1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-08-13 22:33:35 -04:00

Merge pull request from bean5/main

small changes to a few README files
This commit is contained in:
liv 2023-09-04 14:35:15 +02:00 committed by GitHub
commit c57ad35e5b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions
exercises/threads

View file

@ -1,6 +1,6 @@
# Threads
In most current operating systems, an executed programs code is run in a process, and the operating system manages multiple processes at once.
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