diff options
Diffstat (limited to 'include/zix/sem.h')
-rw-r--r-- | include/zix/sem.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zix/sem.h b/include/zix/sem.h index 8aa205e..42dd6c3 100644 --- a/include/zix/sem.h +++ b/include/zix/sem.h @@ -30,8 +30,8 @@ ZIX_BEGIN_DECLS This is an integer that is never negative, and has two main operations: increment (post) and decrement (wait). If a decrement can't be performed - (because the value is 0) the caller will be blocked until another thread posts - and the operation can succeed. + (because the value is 0) the caller will be blocked until another thread + posts and the operation can succeed. Semaphores can be created with any starting value, but typically this will be 0 so the semaphore can be used as a simple signal where each post |