rustlings/exercises/20_threads
Tuan-Dat Tran a3e2bc985c Initial commit
Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
2024-09-01 19:20:40 +02:00
..
README.md Initial commit 2024-09-01 19:20:40 +02:00
threads1.rs Initial commit 2024-09-01 19:20:40 +02:00
threads2.rs Initial commit 2024-09-01 19:20:40 +02:00
threads3.rs Initial commit 2024-09-01 19:20:40 +02:00

README.md

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