diff --git a/Documentation/NuttxUserGuide.html b/Documentation/NuttxUserGuide.html index df71ef5c54..cb0cacfc59 100644 --- a/Documentation/NuttxUserGuide.html +++ b/Documentation/NuttxUserGuide.html @@ -3519,6 +3519,29 @@ interface of the same name. inheritance logic. +
+ Locking versus Signaling Semaphores. + Semaphores (and mutexes) may be used for many different purposes. + One typical use of for mutual exclusion and locking of resources: + In this usage, the thread that needs exclusive access to a resources takes the semaphore to get access to the resource. + The same thread subsequently releases the seamphore count when it no longer needs exclusive access. + Priority inheritance is intended just for this usage case. +
++ In a different usage case, a semaphore may to be used to signal an event: + One thread A waits on a semaphore for an event to occur. + When the event occurs, another thread B will post the semaphore waking the waiting thread A. + This is a completely different usage model; notice that in the mutual exclusion case, the same thread takes and posts the semaphore. In the signaling case, one thread takes the seamphore and a different thread posts the samphore. Priority inheritance should never be used in this signaling case. + Subtle, strange behaviors may result. +
+
+ When priority inheritance is enabled with CONFIG_PRIORITY_INHERITANCE
, the default protocol for the semaphore will be to use priority inheritance.
+ For signaling semaphores, priority inheritance must be explicitly disabled by calling sem_setprotocol
with SEM_PRIO_NONE
.
+ For the case of pthread mutexes, pthread_mutexattr_setprotocol
with PTHREAD_PRIO_NONE
.
+
+ This is discussed in much more detail on this Wiki page. +
POSIX semaphore interfaces:
@@ -4052,7 +4075,8 @@ Otherwise, an -1 (ERROR
) will be returned and the errno
-Description: Set semaphore protocol attribute. +Description: Set semaphore protocol attribute. See the paragraph Locking versus Signaling Semaphores for some important information about the use of this interface. +
Input Parameters: @@ -4796,9 +4820,9 @@ interface of the same name. See the NuttX Threading Wiki page and the Tasks vs. Threads FAQ for additional information on tasks and threads in NuttX.
- Signalling Multi-threaded Task Groups. + Signaling Multi-threaded Task Groups. The behavior of signals in the multi-thread task group is complex. - NuttX emulates a process model with task groups and follows the POSIX rules for signalling behavior. + NuttX emulates a process model with task groups and follows the POSIX rules for signaling behavior. Normally when you signal the task group you would signal using the task ID of the main task that created the group (in practice, a different task should not know the IDs of the internal threads created within the task group); that ID is remembered by the task group (even if the main task thread exits).
@@ -7118,7 +7142,7 @@ returned to indicate the error: Returned Value:
-If successful, the pthread_mutexattr_setprotocol()
function will return zero (OK
).
+If successful, the pthread_mutexattr_getprotocol()
function will return zero (OK
).
Otherwise, an error number will be returned to indicate the error.
@@ -7138,7 +7162,7 @@ Otherwise, an error number will be returned to indicate the error. int protocol);
-Description: Set mutex protocol attribute. +Description: Set mutex protocol attribute. See the paragraph Locking versus Signaling Semaphores for some important information about the use of this interface.
Input Parameters: @@ -10361,6 +10385,7 @@ notify a task when a message is available on a queue.