From 18285a68a67c933f7f6f9cdcaa66d7fca29f4f5f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 4 Oct 2022 12:07:11 +0200 Subject: [PATCH] update README --- ws-ipc/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ws-ipc/README.md b/ws-ipc/README.md index d98c6ec..323ebcd 100644 --- a/ws-ipc/README.md +++ b/ws-ipc/README.md @@ -8,6 +8,9 @@ any Software, there are two primary ways for software entities to communicated w 2. Message Passing. Usually, OSes provide some way of passing messages between threads safely. Ín this workshop, we will look at both available ways to perform IPC with the FSFW. +I recommend to read the thread and mutual exclusion chapters of the +[the concurrency chapter provided by the isocpp](https://isocpp.org/wiki/faq/cpp11-library-concurrency) +if you are completely new to concurrency in C++. # 1. Sharing state between two threads