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