File: shmop.2

package info (click to toggle)
manpages 1.29-2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 4,796 kB
  • ctags: 5
  • sloc: sh: 79; makefile: 61
file content (245 lines) | stat: -rw-r--r-- 6,219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
.\" Copyright 1993 Giorgio Ciucci (giorgio@crcc.it)
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Modified Sun Nov 28 17:06:19 1993, Rik Faith (faith@cs.unc.edu)
.\"          with material from Luigi P. Bai (lpb@softint.com)
.\" Portions Copyright 1993 Luigi P. Bai
.\" Modified Tue Oct 22 22:04:23 1996 by Eric S. Raymond <esr@thyrsus.com>
.\"
.TH SHMOP 2 "November 28, 1993" "Linux 0.99.13" "Linux Programmer's Manual" 
.SH NAME
shmop \- shared memory operations
.SH SYNOPSIS
.nf
.B
# include <sys/types.h>
.B
# include <sys/shm.h>
.fi
.sp
.BI "void *shmat ( int " shmid ,
.BI "const void *" shmaddr ,
.BI "int " shmflg " )"
.sp
.BI "int shmdt ( const void *" shmaddr ")"
.SH DESCRIPTION
The function
.B shmat
attaches the shared memory segment identified by
.B shmid
to the data segment of the calling process.
The attaching address is specified by
.I shmaddr
with one of the following criteria:
.IP
If
.I shmaddr
is
.BR 0 ,
the system tries to find an unmapped region in the range 1 \- 1.5G
starting from the upper value and coming down from there.
.IP
If
.I shmaddr
isn't
.B 0
and
.B SHM_RND
is asserted in
.IR shmflg ,
the attach occurs at address equal to the rounding down of
.I shmaddr
to a multiple of
.BR SHMLBA .
Otherwise
.I shmaddr
must be a page aligned address at which the attach occurs.
.PP
If
.B SHM_RDONLY
is asserted in
.IR shmflg ,
the segment is attached for reading and the process must have
read access permissions to the segment.
Otherwise the segment is attached for read and write
and the process must have read and write access permissions to the segment.
There is no notion of write-only shared memory segment.
.PP
The
.B brk
value of the calling process is not altered by the attach.
The segment will automatically detached at process exit.
The same segment may be attached as a read and as a read-write
one, and more than once, in the process's address space.
.PP
On a successful
.B shmat
call the system updates the members of the structure
.B shmid_ds
associated to the shared memory segment as follows:
.IP
.B shm_atime
is set to the current time.
.IP
.B shm_lpid
is set to the process-ID of the calling process.
.IP
.B shm_nattch
is incremented by one.
.PP
Note that the attach succeeds also if the shared memory segment is
marked as to be deleted.
.PP
The function
.B shmdt
detaches from the calling process's data segment the shared memory
segment located at the address specified by
.IR shmaddr .
The detaching shared memory segment must be one among the currently
attached ones (to the process's address space) with
.I shmaddr
equal to the value returned by the its attaching
.B shat
call.
.PP
On a successful
.B shmdt
call the system updates the members of the structure
.B shmid_ds
associated to the shared memory segment as follows:
.IP
.B shm_dtime
is set to the current time.
.IP
.B shm_lpid
is set to the process-ID of the calling process.
.IP
.B shm_nattch
is decremented by one.
If it becomes 0 and the segment is marked for deletion,
the segment is deleted.
.PP
The occupied region in the user space of the calling process is
unmapped.
.PP
.SH "SYSTEM CALLS"
.TP
.B fork()
After a
.B fork()
the child inherits the attached shared memory segments.
.TP
.B exec()
After an
.B exec()
all attached shared memory segments are detached (not destroyed).
.TP
.B exit()
Upon
.B exit()
all attached shared memory segments are detached (not destroyed).
.PP
.SH "RETURN VALUE"
On a failure both functions return
.B \-1
with
.B errno
indicating the error,
otherwise
.B shmat
returns the address of the attached shared memory segment, and
.B shmdt
returns
.BR 0 .
.SH ERRORS
When
.B shmat
fails, at return
.B errno
will be set to one among the following values:
.TP 11
.B EACCES
The calling process has no access permissions for the requested attach
type.
.TP
.B EINVAL
Invalid
.I shmid
value, unaligned (i.e., not page-aligned and \fBSHM_RND\fP was not
specified) or invalid
.I shmaddr
value, or failing attach at
.BR brk .
.TP
.B ENOMEM
Could not allocate memory for the descriptor or for the page tables.
.PP
The function
.B shmdt
can fails only if there is no shared memory segment attached at
.IR shmaddr ,
in such a case at return
.B errno
will be set to
.BR EINVAL .
.SH NOTES
On executing a
.BR fork (2)
system call, the child inherits all the attached shared memory segments.
.PP
The shared memory segments attached to a process executing an
.BR execve (2)
system call will not be attached to the resulting process.
.PP
The following is a system parameter affecting a
.B shmat
system call:
.TP 11
.B SHMLBA
Segment low boundary address multiple.
Must be page aligned.
For the current implementation the
.B SHMBLA
value is
.BR PAGE_SIZE .
.PP
The implementation has no intrinsic limit to the per process maximum
number of shared memory segments
.RB ( SHMSEG )
.SH "CONFORMING TO"
SVr4, SVID.  SVr4 documents an additional error condition EMFILE.
In SVID-v4 the type of the \fIshmaddr\fP argument was changed from
.B "char *"
into
.BR "const void *" ,
and the returned type of \fIshmat\fP() from
.B "char *"
into
.BR "void *" .
(Linux libc4 and libc5 have the
.B "char *"
prototypes; glibc2 has
.BR "void *" .)
.SH "SEE ALSO"
.BR ipc (5),
.BR shmctl (2),
.BR shmget (2)