1
0
forked from fsfw/fsfw

improved documentation

This commit is contained in:
2020-05-27 19:59:59 +02:00
parent eabee85ba9
commit 7145982b4a
3 changed files with 9 additions and 2 deletions

View File

@ -12,7 +12,8 @@
* A semaphore is a synchronization primitive.
* See: https://en.wikipedia.org/wiki/Semaphore_(programming)
* A semaphore can be used to achieve task synchonization and track the
* availability of resources.
* availability of resources by using either the binary or the counting
* semaphore types.
*
* If mutual exlcusion of a resource is desired, a mutex should be used,
* which is a special form of a semaphore and has an own interface.