Unix and Linux Discussions Tagged with ipc |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
10,352 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
10,240 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,534 |
Shell Programming and Scripting |
|
|
|
10 |
12,171 |
Programming |
|
|
|
1 |
3,842 |
Programming |
|
|
|
3 |
7,032 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,030 |
Shell Programming and Scripting |
|
|
|
1 |
4,639 |
Programming |
|
|
|
2 |
32,251 |
Programming |
|
|
|
2 |
10,422 |
Programming |
|
|
|
1 |
3,577 |
Programming |
|
|
|
3 |
7,210 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
2,666 |
UNIX for Advanced & Expert Users |
|
|
|
8 |
10,655 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
22,743 |
AIX |
|
|
|
4 |
8,488 |
Programming |
|
|
|
3 |
14,780 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,758 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
8,086 |
Programming |
|
|
|
3 |
9,533 |
Programming |
|
|
|
1 |
6,713 |
Programming |
|
|
|
1 |
4,799 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
12,030 |
Programming |
IPC(2) Linux Programmer's Manual IPC(2)
NAME
ipc - System V IPC system calls
SYNOPSIS
int ipc(unsigned int call, int first, int second, int third,
void *ptr, long fifth);
DESCRIPTION
ipc() is a common kernel entry point for the System V IPC calls for messages, semaphores, and shared memory. call determines which IPC
function to invoke; the other arguments are passed through to the appropriate call.
User programs should call the appropriate functions by their usual names. Only standard library implementors and kernel hackers need to
know about ipc().
CONFORMING TO
ipc() is Linux-specific, and should not be used in programs intended to be portable.
NOTES
On a few architectures, for example ia64, there is no ipc() system call; instead msgctl(2), semctl(2), shmctl(2), and so on really are
implemented as separate system calls.
SEE ALSO
msgctl(2), msgget(2), msgrcv(2), msgsnd(2), semctl(2), semget(2), semop(2), semtimedop(2), shmat(2), shmctl(2), shmdt(2), shmget(2)
COLOPHON
This page is part of release 3.25 of the Linux man-pages project. A description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
Linux 2007-06-28 IPC(2)