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