Denton24646 b0905d5eb1 feat: Add threads2.rs exercise
Add an exercise centered around threads and the mspc library.
2022-06-26 20:13:29 -04:00
..
2022-06-26 20:13:29 -04:00

Threads

In most current operating systems, an executed programs 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