adding underscore

This commit is contained in:
Jidong Xiao
2023-12-07 15:56:27 -05:00
parent 9413d40723
commit 9044f90a44

View File

@@ -140,7 +140,7 @@ private:
- So how exactly do we get multiple streams of computation happening simultaneously? There are many choices
(may depend on your programming language, operating system, compiler, etc.).
- Well use the STL thread library (#include <thread>). The new thread begins execution in the provided
function (student thread, in this example). We pass the necessary shared data from the main thread to the
function (student_thread, in this example). We pass the necessary shared data from the main thread to the
secondary thread to facilitate communication.
```cpp