2020-06-15 14:18:57 +00:00
|
|
|
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_SHM_H_
|
|
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_SHM_H_
|
|
|
|
|
2023-06-09 06:44:03 +00:00
|
|
|
#define SHM_ANON SHM_ANON
|
|
|
|
#define SHM_DEST SHM_DEST
|
|
|
|
#define SHM_EXEC SHM_EXEC
|
|
|
|
#define SHM_HUGETLB SHM_HUGETLB
|
|
|
|
#define SHM_INFO SHM_INFO
|
|
|
|
#define SHM_LOCK SHM_LOCK
|
|
|
|
#define SHM_LOCKED SHM_LOCKED
|
|
|
|
#define SHM_NORESERVE SHM_NORESERVE
|
|
|
|
#define SHM_R SHM_R
|
|
|
|
#define SHM_RDONLY SHM_RDONLY
|
|
|
|
#define SHM_REMAP SHM_REMAP
|
|
|
|
#define SHM_RND SHM_RND
|
|
|
|
#define SHM_STAT SHM_STAT
|
|
|
|
#define SHM_UNLOCK SHM_UNLOCK
|
|
|
|
#define SHM_W SHM_W
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2023-02-23 02:58:23 +00:00
|
|
|
extern const char *SHM_ANON;
|
2022-08-05 21:50:08 +00:00
|
|
|
extern const int SHM_DEST;
|
|
|
|
extern const int SHM_EXEC;
|
|
|
|
extern const int SHM_HUGETLB;
|
|
|
|
extern const int SHM_INFO;
|
|
|
|
extern const int SHM_LOCK;
|
|
|
|
extern const int SHM_LOCKED;
|
|
|
|
extern const int SHM_NORESERVE;
|
|
|
|
extern const int SHM_R;
|
|
|
|
extern const int SHM_RDONLY;
|
|
|
|
extern const int SHM_REMAP;
|
|
|
|
extern const int SHM_RND;
|
|
|
|
extern const int SHM_STAT;
|
|
|
|
extern const int SHM_UNLOCK;
|
|
|
|
extern const int SHM_W;
|
2020-06-15 14:18:57 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_SHM_H_ */
|