From 94c01485caa0ab48ca956572d6f024f5a3f9e355 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 9 Feb 2019 16:07:11 -0500 Subject: merge XOPEN identifiers --- src/sys/shm/struct_shmid_ds.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/sys/shm/struct_shmid_ds.c (limited to 'src/sys/shm/struct_shmid_ds.c') diff --git a/src/sys/shm/struct_shmid_ds.c b/src/sys/shm/struct_shmid_ds.c new file mode 100644 index 00000000..cb030d41 --- /dev/null +++ b/src/sys/shm/struct_shmid_ds.c @@ -0,0 +1,16 @@ +#include + +struct shmid_ds { + struct ipc_perm shm_perm; + size_t shm_segsz; + pid_t shm_lpid; + pid_t shm_cpid; + shmatt_t shm_nattach; + time_t shm_atime; + time_t shm_dtime; + time_t shm_ctime; +}; + +/* +XOPEN(4) +*/ -- cgit v1.2.1