add 02 main IPC

This commit is contained in:
2022-10-05 11:59:32 +02:00
parent a839c7dc3e
commit b54ee7dd95
2 changed files with 50 additions and 0 deletions

View File

@ -29,3 +29,5 @@ if you are completely new to concurrency in C++.
C++ does not really have an built-in message queue implementation.
We are going to use a `std::queue` in conjunction with a `std::mutex` to
have something similar to a message queue API.
##