mirror of
https://github.com/fluencelabs/musl
synced 2025-06-30 15:11:55 +00:00
initial check-in, version 0.5.0
This commit is contained in:
22
include/bits/ipc.h
Normal file
22
include/bits/ipc.h
Normal file
@ -0,0 +1,22 @@
|
||||
#define IPC_CREAT 01000
|
||||
#define IPC_EXCL 02000
|
||||
#define IPC_NOWAIT 04000
|
||||
|
||||
#define IPC_RMID 0
|
||||
#define IPC_SET 1
|
||||
#define IPC_STAT 2
|
||||
|
||||
#define IPC_PRIVATE ((key_t) 0)
|
||||
|
||||
struct ipc_perm
|
||||
{
|
||||
key_t key;
|
||||
uid_t uid;
|
||||
gid_t gid;
|
||||
uid_t cuid;
|
||||
gid_t cgid;
|
||||
mode_t mode;
|
||||
int seq;
|
||||
long __pad1;
|
||||
long __pad2;
|
||||
};
|
Reference in New Issue
Block a user