summaryrefslogtreecommitdiff
path: root/src/sys/ipc/struct_ipc_perm.h
blob: e796d5654a856afaa2b96e5598d4947ad3b110a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <sys/ipc.h>

struct ipc_perm {
	uid_t uid;	/* Owner's user ID */
	gid_t gid;	/* Owner's group ID */
	uid_t cuid;	/* Creator's user ID */
	uid_t cgid;	/* Creator's group ID */
	mode_t mode;	/* Read/write permission */
};

/*
XOPEN(4)
*/