...
.
...
NamePtr
...
This is a pointer to an ASCII string used to provide a name to the mutual exclusion semaphore. The ASCII string can have any length as long as it is NUL
terminated. Anchor
.PendList.NbrEntries
...
Each mutual exclusion semaphore contains a list of tasks waiting for the semaphore to be released. The variable represents the number of entries in the wait list.anchor
.OwnerOriginalPrio
...
.OwnerTCBPtr->Prio
...
Dereferencing the pointer to the OS_TCB
of the mutual exclusion semaphore owner allows the application to determine whether a task priority was changed. Anchor
.OwnerNestingCtr
...
.TS
...
This variable contains the timestamp of when the mutual exclusion semaphore was last released.