rustlings/exercises/20_threads
2024-05-22 15:13:18 +02:00
..
README.md docs: add more info in threads 2024-04-08 22:07:26 +08:00
threads1.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
threads2.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
threads3.rs Add missing semicolons 2024-05-22 15:13:18 +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