rustlings/exercises/20_threads
2024-04-11 02:51:02 +02:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
threads1.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
threads2.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
threads3.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00

Threads

In most current operating systems, an executed program's code is run in a process, and the operating system manages multiple processes at once. Within your program, you can also have independent parts that run simultaneously. The features that run these independent parts are called threads.

Further information