Initialize then add a signal semaphore to the system
Source position: exec.pas line 2076
procedure AddSemaphore( |
sigSem: PSignalSemaphore |
); |
sigSem |
|
An signal semaphore structure |
This function attaches a signal semaphore structure to the system's public signal semaphore list. The name and priority fields of the semaphore structure must be initialized prior to calling this function. If you do not want to let others rendezvous with this semaphore, use InitSemaphore() instead.
If a semaphore has been added to the naming list, you must be careful to remove the semaphore from the list (via RemSemaphore()) before deallocating its memory.
Semaphores that are linked together in an allocation list (which ObtainSemaphoreList() would use) may not be added to the system naming list, because the facilities use the link field of the signal semaphore in incompatible ways
|
Remove a signal semaphore from the system |
|
|
Find Semaphore by name |
|
|
Initialize a signal semaphore |