summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/arch/powerpc/bits/sem.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/arch/powerpc/bits/sem.h')
-rw-r--r--libc-top-half/musl/arch/powerpc/bits/sem.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc-top-half/musl/arch/powerpc/bits/sem.h b/libc-top-half/musl/arch/powerpc/bits/sem.h
new file mode 100644
index 0000000..28be484
--- /dev/null
+++ b/libc-top-half/musl/arch/powerpc/bits/sem.h
@@ -0,0 +1,12 @@
+struct semid_ds {
+ struct ipc_perm sem_perm;
+ unsigned long __sem_otime_hi;
+ unsigned long __sem_otime_lo;
+ unsigned long __sem_ctime_hi;
+ unsigned long __sem_ctime_lo;
+ unsigned short __sem_nsems_pad, sem_nsems;
+ long __unused3;
+ long __unused4;
+ time_t sem_otime;
+ time_t sem_ctime;
+};