]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man2/shmat.2
xnu-1699.22.73.tar.gz
[apple/xnu.git] / bsd / man / man2 / shmat.2
CommitLineData
9bccf70c
A
1.\" $OpenBSD: shmat.2,v 1.2 1996/10/08 01:20:15 michaels Exp $
2.\" $NetBSD: shmat.2,v 1.1 1995/10/16 23:49:29 jtc Exp $
3.\"
4.\" Copyright (c) 1995 Frank van der Linden
5.\" All rights reserved.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\" notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\" notice, this list of conditions and the following disclaimer in the
14.\" documentation and/or other materials provided with the distribution.
15.\" 3. All advertising materials mentioning features or use of this software
16.\" must display the following acknowledgement:
17.\" This product includes software developed for the NetBSD Project
18.\" by Frank van der Linden
19.\" 4. The name of the author may not be used to endorse or promote products
20.\" derived from this software without specific prior written permission
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32.\"/
33.Dd August 17, 1995
34.Dt SHMAT 2
35.Os
36.Sh NAME
37.Nm shmat ,
38.Nm shmdt
39.Nd map/unmap shared memory
40.Sh SYNOPSIS
9bccf70c
A
41.Fd #include <sys/shm.h>
42.Ft void *
2d21ac55
A
43.Fo shmat
44.Fa "int shmid"
45.Fa "const void *shmaddr"
46.Fa "int shmflg"
47.Fc
9bccf70c 48.Ft int
2d21ac55
A
49.Fo shmdt
50.Fa "const void *shmaddr"
51.Fc
9bccf70c
A
52.Sh DESCRIPTION
53.Fn shmat
54maps the shared memory segment associated with the shared memory identifier
55.Fa shmid
56into the address space of the calling process. The address at which the
57segment is mapped is determined by the
58.Fa shmaddr
59parameter. If it is equal to 0, the system will pick an address itself.
60Otherwise, an attempt is made to map the shared memory segment at the
61address
62.Fa shmaddr
63specifies. If SHM_RND is set in
64.Fa shmflg ,
65the system will round the address down to a multiple of SHMLBA bytes
66(SHMLBA is defined in
67.Aq Pa sys/shm.h
68).
9bccf70c
A
69A shared memory segment can be mapped read-only by specifying the
70SHM_RDONLY flag in
71.Fa shmflg .
9bccf70c
A
72.Fn shmdt
73unmaps the shared memory segment that is currently mapped at
74.Fa shmaddr
75from the calling process' address space.
76.Fa shmaddr
77must be a value returned by a prior
78.Fn shmat
79call. A shared memory segment will remain existant until it is removed by
80a call to
81.Xr shmctl 2
82with the IPC_RMID command.
83.Sh RETURN VALUES
84.Fn shmat
85returns the address at which the shared memory segment has been mapped into
86the calling process' address space when successful,
87.Fn shmdt
88returns 0 on successful completion. Otherwise, a value of -1 is returned,
89and the global variable
90.Va errno
91is set to indicate the error.
92.Sh ERRORS
2d21ac55 93The
9bccf70c 94.Fn shmat
2d21ac55 95system call will fail if:
9bccf70c 96.Bl -tag -width Er
2d21ac55 97.\" ===========
55e303ae 98.It Bq Er EACCES
9bccf70c 99The calling process has no permission to access this shared memory segment.
2d21ac55 100.\" ===========
9bccf70c
A
101.It Bq Er EINVAL
102.Fa shmid
103is not a valid shared memory identifier.
9bccf70c
A
104.Fa shmaddr
105specifies an illegal address.
2d21ac55 106.\" ===========
9bccf70c
A
107.It Bq Er EMFILE
108The number of shared memory segments has reached the system-wide limit.
2d21ac55
A
109.\" ===========
110.It Bq Er ENOMEM
111There is not enough available data space for the calling process to
112map the shared memory segment.
113.Pp
9bccf70c 114.El
2d21ac55 115The
9bccf70c 116.Fn shmdt
2d21ac55 117system call will fail if:
9bccf70c
A
118.Bl -tag -width Er
119.It Bq Er EINVAL
120.Fa shmaddr
121is not the start address of a mapped shared memory segment.
55e303ae 122.El
2d21ac55
A
123.Sh LEGACY SYNOPSIS
124.Fd #include <sys/types.h>
125.Fd #include <sys/ipc.h>
126.Fd #include <sys/shm.h>
127.Pp
128The include files
129.In sys/types.h
130and
131.In sys/ipc.h
132are necessary for both functions.
9bccf70c 133.Sh SEE ALSO
2d21ac55 134.Xr mmap 2 ,
9bccf70c
A
135.Xr shmctl 2 ,
136.Xr shmget 2 ,
2d21ac55 137.Xr compat 5