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,
10 void *ptr, 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 On a few architectures, for example ia64, there is no ipc() system
28 call; instead msgctl(2), semctl(2), shmctl(2), and so on really are
29 implemented as separate system calls.
30
32 msgctl(2), msgget(2), msgrcv(2), msgsnd(2), semctl(2), semget(2),
33 semop(2), semtimedop(2), shmat(2), shmctl(2), shmdt(2), shmget(2)
34
36 This page is part of release 3.22 of the Linux man-pages project. A
37 description of the project, and information about reporting bugs, can
38 be found at http://www.kernel.org/doc/man-pages/.
39
40
41
42Linux 2007-06-28 IPC(2)