sysvipc(7) | Miscellaneous Information Manual | sysvipc(7) |
sysvipc - System V interprocess communication mechanisms
System V IPC is the name given to three interprocess communication mechanisms that are widely available on UNIX systems: message queues, semaphore, and shared memory.
System V message queues allow data to be exchanged in units called messages. Each message can have an associated priority. POSIX message queues provide an alternative API for achieving the same result; see mq_overview(7).
The System V message queue API consists of the following system calls:
System V semaphores allow processes to synchronize their actions. System V semaphores are allocated in groups called sets; each semaphore in a set is a counting semaphore. POSIX semaphores provide an alternative API for achieving the same result; see sem_overview(7).
The System V semaphore API consists of the following system calls:
System V shared memory allows processes to share a region a memory (a "segment"). POSIX shared memory is an alternative API for achieving the same result; see shm_overview(7).
The System V shared memory API consists of the following system calls:
For a discussion of the interaction of System V IPC objects and IPC namespaces, see ipc_namespaces(7).
ipcmk(1), ipcrm(1), ipcs(1), lsipc(1), ipc(2), msgctl(2), msgget(2), msgrcv(2), msgsnd(2), semctl(2), semget(2), semop(2), shmat(2), shmctl(2), shmdt(2), shmget(2), ftok(3), ipc_namespaces(7)
2023-10-31 | Linux man-pages 6.7 |