1IPC(2) Linux Programmer's Manual IPC(2)
2
3
4
6 ipc - System V IPC system calls
7
9 int ipc(unsigned int call, int first, int second, int third, void *ptr,
10 long fifth);
11
13 ipc() is a common kernel entry point for the System V IPC calls for
14 messages, semaphores, and shared memory. call determines which IPC
15 function to invoke; the other arguments are passed through to the
16 appropriate call.
17
18 User programs should call the appropriate functions by their usual
19 names. Only standard library implementors and kernel hackers need to
20 know about ipc().
21
23 ipc() is Linux specific, and should not be used in programs intended to
24 be portable.
25
27 msgctl(2), msgget(2), msgrcv(2), msgsnd(2), semctl(2), semget(2),
28 semop(2), shmat(2), shmctl(2), shmdt(2), shmget(2)
29
30
31
32Linux 1.2.4 1995-04-15 IPC(2)