Quick demonstration of multi threading in modern C++
Features:
- Creating task and threads
- Using function pointers, functors, and lambda functions
- Futures, promises, and async tasks
- Supports Google Bazel
Here is the video explaining how to use multi-threading in C++:
git clone https://github.com/ourarash/multithreading_cpp.git
You can run this either using bazel
OR just plain g++
.
For bazel
:
bazel run src/main:main
For g++
:
g++ -std=c++17 -lpthread src/main/main.cc -I ./
./a.out
For instructions on installing Bazel and setting it up in Visual Studio Code see here