This commit is contained in:
Michael Kerrisk 2008-08-06 20:17:27 +00:00
parent 116e7cd9df
commit 6edbac015c
1 changed files with 8 additions and 8 deletions

View File

@ -88,14 +88,14 @@ structure is defined in \fI<sys/ipc.h>\fP as follows
.in +4n
.nf
struct ipc_perm {
key_t key; /* Key supplied to shmget(2) */
uid_t \fBuid\fP; /* Effective UID of owner */
gid_t \fBgid\fP; /* Effective GID of owner */
uid_t cuid; /* Effective UID of creator */
gid_t cgid; /* Effective GID of creator */
unsigned short \fBmode\fP; /* \fBPermissions\fP + SHM_DEST and
SHM_LOCKED flags */
unsigned short seq; /* Sequence number */
key_t key; /* Key supplied to shmget(2) */
uid_t \fBuid\fP; /* Effective UID of owner */
gid_t \fBgid\fP; /* Effective GID of owner */
uid_t cuid; /* Effective UID of creator */
gid_t cgid; /* Effective GID of creator */
unsigned short \fBmode\fP; /* \fBPermissions\fP + SHM_DEST and
SHM_LOCKED flags */
unsigned short seq; /* Sequence number */
};
.fi
.in