blob: 2391346c9c82204dfe5d0aaf84e270b85a61ba80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
This chapter describes the NSPR API for using interprocess communication
semaphores.
NSPR provides an interprocess communication mechanism using a counting
semaphore model similar to that which is provided in Unix and Windows
platforms.
.. note::
**Note:** See also `Named Shared Memory <Named_Shared_Memory>`__
- `IPC Semaphore Functions <#IPC_Semaphore_Functions>`__
.. _IPC_Semaphore_Functions:
IPC Semaphore Functions
-----------------------
- :ref:`PR_OpenSemaphore`
- :ref:`PR_WaitSemaphore`
- :ref:`PR_PostSemaphore`
- :ref:`PR_CloseSemaphore`
- :ref:`PR_DeleteSemaphore`
|