]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/ipc.2
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man2 / ipc.2
CommitLineData
fea681da
MK
1.\" Hey Emacs! This file is -*- nroff -*- source.
2.\"
3.\" Copyright (c) 1995 Michael Chastain (mec@shell.portal.com), 15 April 1995.
4.\"
5.\" This is free documentation; you can redistribute it and/or
6.\" modify it under the terms of the GNU General Public License as
7.\" published by the Free Software Foundation; either version 2 of
8.\" the License, or (at your option) any later version.
9.\"
10.\" The GNU General Public License's references to "object code"
11.\" and "executables" are to be interpreted as the output of any
12.\" document formatting or typesetting system, including
13.\" intermediate and printed output.
14.\"
15.\" This manual is distributed in the hope that it will be useful,
16.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
17.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18.\" GNU General Public License for more details.
19.\"
20.\" You should have received a copy of the GNU General Public
21.\" License along with this manual; if not, write to the Free
22.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
23.\" USA.
24.\"
25.\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond <esr@thyrsus.com>
26.TH IPC 2 1995-04-15 "Linux 1.2.4" "Linux Programmer's Manual"
27.SH NAME
28ipc \- System V IPC system calls
29.SH SYNOPSIS
521bf584
MK
30.nf
31.BI "int ipc(unsigned int " call ", int " first ", int " second \
c13182ef 32", int " third ,
521bf584
MK
33.BI " void *" ptr ", long " fifth );
34.fi
fea681da 35.SH DESCRIPTION
63aa9df0 36.BR ipc ()
fea681da
MK
37is a common kernel entry point for the System V IPC calls
38for messages, semaphores, and shared memory.
39.I call
40determines which IPC function to invoke;
41the other arguments are passed through to the appropriate call.
42.PP
43User programs should call the appropriate functions by their usual names.
44Only standard library implementors and kernel hackers need to know about
63aa9df0 45.BR ipc ().
fea681da 46.SH "CONFORMING TO"
63aa9df0 47\fBipc\fP() is Linux specific, and should not be used in programs
fea681da
MK
48intended to be portable.
49.SH "SEE ALSO"
50.BR msgctl (2),
51.BR msgget (2),
52.BR msgrcv (2),
53.BR msgsnd (2),
54.BR semctl (2),
55.BR semget (2),
56.BR semop (2),
57.BR shmat (2),
58.BR shmctl (2),
59.BR shmdt (2),
60.BR shmget (2)