summaryrefslogtreecommitdiff
path: root/arch/x86_64/bits/sem.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/bits/sem.h')
-rw-r--r--arch/x86_64/bits/sem.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86_64/bits/sem.h b/arch/x86_64/bits/sem.h
new file mode 100644
index 00000000..d383d4ea
--- /dev/null
+++ b/arch/x86_64/bits/sem.h
@@ -0,0 +1,16 @@
+struct semid_ds {
+ struct ipc_perm sem_perm;
+ time_t sem_otime;
+ long __unused1;
+ time_t sem_ctime;
+ long __unused2;
+#if __BYTE_ORDER == __LITTLE_ENDIAN
+ unsigned short sem_nsems;
+ char __sem_nsems_pad[sizeof(long)-sizeof(short)];
+#else
+ char __sem_nsems_pad[sizeof(long)-sizeof(short)];
+ unsigned short sem_nsems;
+#endif
+ long __unused3;
+ long __unused4;
+};