1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-15 00:04:58 +02:00
Files
rustlings/exercises/threads
Matthew Van Schellebeeck ccd73c0a81 style: explicitly use Arc::clone
2022-10-17 22:25:28 -05:00
..
2022-07-15 11:59:53 +02:00
2022-10-17 22:25:28 -05:00
2022-10-17 22:25:28 -05: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