summaryrefslogtreecommitdiff
path: root/arch/or1k/bits
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-07-29 18:07:23 -0400
committerRich Felker <dalias@aerifal.cx>2019-07-29 18:07:23 -0400
commit6f2e5607d2d463dfc342489660e089553b749dcf (patch)
tree67ca35ac7705eb2b0bbaa20f199ba92ed8694132 /arch/or1k/bits
parent1afe5f3e5b504992914362d6c1c0a0af55f3b32b (diff)
downloadmusl-6f2e5607d2d463dfc342489660e089553b749dcf.tar.gz
duplicate generic bits/sem.h for each arch using it, in prep to change
Diffstat (limited to 'arch/or1k/bits')
-rw-r--r--arch/or1k/bits/sem.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/or1k/bits/sem.h b/arch/or1k/bits/sem.h
new file mode 100644
index 00000000..d383d4ea
--- /dev/null
+++ b/arch/or1k/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;
+};