]> git.saurik.com Git - apple/xnu.git/blame_incremental - bsd/man/man2/shm_open.2
xnu-7195.101.1.tar.gz
[apple/xnu.git] / bsd / man / man2 / shm_open.2
... / ...
CommitLineData
1.\" $Darwin$
2.\"
3.\" Copyright (c) 1999-2002 Apple Computer, Inc. All rights reserved.
4.\"
5.\" @APPLE_LICENSE_HEADER_START@
6.\"
7.\" The contents of this file constitute Original Code as defined in and
8.\" are subject to the Apple Public Source License Version 1.1 (the
9.\" "License"). You may not use this file except in compliance with the
10.\" License. Please obtain a copy of the License at
11.\" http://www.apple.com/publicsource and read it before using this file.
12.\"
13.\" This Original Code and all software distributed under the License are
14.\" distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15.\" EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16.\" INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17.\" FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
18.\" License for the specific language governing rights and limitations
19.\" under the License.
20.\"
21.\" @APPLE_LICENSE_HEADER_END@
22.\"
23.Dd August 29, 2008
24.Dt SHM_OPEN 2
25.Os Darwin
26.Sh NAME
27.Nm shm_open
28.Nd open a shared memory object
29.Sh SYNOPSIS
30.Fd #include <sys/mman.h>
31.Fd #include <fcntl.h>
32.Ft int
33.Fo shm_open
34.Fa "const char *name"
35.Fa "int oflag"
36.Fa "..."
37.Fc
38.Pp
39The parameter "mode_t mode" is optional.
40.Sh DESCRIPTION
41The shared memory object referenced by
42.Fa name
43is opened for reading and/or writing as specified by the argument
44.Fa oflag
45and the file descriptor returned to the calling process.
46The returned file descriptor will be the lowest non-open file
47descriptor for the calling process, and is not shared with any
48other processes, as it is a new file descriptor. The new file
49descriptor will have the
50.Dv FD_CLOEXEC
51flag set.
52Repeated calls
53to
54.Nm shm_open
55with the same string value for
56.Fn name
57will return a file descriptor referring to the same shared memory
58object, provided that the object has not been unlinked by a call to
59.Fn shm_unlink .
60The
61.Fa oflag
62argument may indicate the file is to be
63created if it does not exist (by specifying the
64.Dv O_CREAT
65flag), in which case the file is created with mode
66.Fa mode
67as described in
68.Xr chmod 2
69and modified by the process' umask value (see
70.Xr umask 2 ) .
71.Pp
72The value of
73.Fa oflag
74is formed by
75.Em or Ns 'ing
76the following values:
77.Pp
78.Bd -literal -offset indent -compact
79O_RDONLY open for reading only
80O_RDWR open for reading and writing
81O_CREAT create object if it does not exist
82O_EXCL error if create and object exists
83O_TRUNC truncate size to 0
84.Ed
85.Pp
86Exactly one of
87.Dv O_RDONLY
88or
89.Dv O_RDWR
90must be specified.
91.Pp
92If
93.Dv O_TRUNC
94is specified and the
95file exists, the file is truncated to zero length.
96If
97.Dv O_EXCL
98is set with
99.Dv O_CREAT
100and the file already
101exists,
102.Fn shm_open
103returns an error. This may be used to
104implement a simple exclusive access locking mechanism.
105.Pp
106If successful,
107.Fn shm_open
108returns a non-negative integer, termed a file descriptor.
109It returns -1 and sets
110.Va errno
111on failure.
112The file pointer used to mark the current position within the
113memory object is set to the beginning of the object.
114.Pp
115When a new shared memory object is created it is given the
116owner and group corresponding to the effective user and
117group of the calling process. There is no visible entry in the
118file system for the created object in this implementation.
119.Pp
120When a shared memory object is created, it persists until it
121it unlinked and all other references are gone. Objects do
122not persist across a system reboot.
123.Pp
124The system imposes a limit on the number of file descriptors
125open simultaneously by one process.
126.Xr getdtablesize 2
127returns the current system limit.
128.Sh ERRORS
129The named object is opened unless:
130.Bl -tag -width Er
131.It Bq Er EACCES
132The required permissions (for reading and/or writing)
133are denied for the given flags.
134.It Bq Er EACCES
135.Dv O_CREAT
136is specified, the object does not exist, and permission to
137create the object is denied.
138.It Bq Er EEXIST
139.Dv O_CREAT
140and
141.Dv O_EXCL
142were specified and the object exists.
143.It Bq Er EINTR
144The
145.Fn shm_open
146operation was interrupted by a signal.
147.It Bq Er EINVAL
148The
149.Fn shm_open
150operation is not supported.
151.It Bq Er EMFILE
152The process has already reached its limit for open file descriptors.
153.It Bq Er ENAMETOOLONG
154.Fa name
155exceeded the name size limit.
156This is currently
157.Dv PSHMNAMLEN
158characters (defined in
159.In sys/posix_shm.h ) ,
160but this may change in the future.
161.It Bq Er ENFILE
162The system file table is full.
163.It Bq Er ENOENT
164.Dv O_CREAT
165is not set and the named object does not exist.
166.It Bq Er ENOSPC
167.Dv O_CREAT
168is specified, the file does not exist, and there is insufficient
169space available to create the object.
170.El
171.Sh SEE ALSO
172.Xr chmod 2 ,
173.Xr close 2 ,
174.Xr getdtablesize 2 ,
175.Xr mmap 2 ,
176.Xr shm_unlink 2 ,
177.Xr umask 2
178.Sh HISTORY
179.Fn shm_open
180is specified in the POSIX Realtime Extension (1003.1b-1993/1003.1i-1995).