summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2014-03-11 15:27:13 -0400
committerRich Felker <dalias@aerifal.cx>2014-03-11 15:27:13 -0400
commitf6e2f7e13f0edb1bb1d94e6ad4bf44abffd048d1 (patch)
tree03255e64909707df47a7221b01a81eedd84544d0 /include
parent6739b13a172aad9c01572c04cadacc99c7041811 (diff)
downloadmusl-f6e2f7e13f0edb1bb1d94e6ad4bf44abffd048d1.tar.gz
move struct semid_ds to from shared sys/sem.h to bits
the definition was found to be incorrect at least for powerpc, and fixing this cleanly requires making the definition arch-specific. this will allow cleaning up the definition for other archs to make it more specific, and reversing some of the ugliness (time_t hacks) introduced with the x32 port. this first commit simply copies the existing definition to each arch without any changes. this is intentional, to make it easier to review changes made on a per-arch basis.
Diffstat (limited to 'include')
-rw-r--r--include/sys/sem.h17
1 files changed, 1 insertions, 16 deletions
diff --git a/include/sys/sem.h b/include/sys/sem.h
index 6ee3dd5a..e7c36980 100644
--- a/include/sys/sem.h
+++ b/include/sys/sem.h
@@ -27,22 +27,7 @@ extern "C" {
#include <endian.h>
-struct semid_ds {
- struct ipc_perm sem_perm;
- time_t sem_otime;
- time_t __unused1;
- time_t sem_ctime;
- time_t __unused2;
-#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;
-};
+#include <bits/sem.h>
#define _SEM_SEMUN_UNDEFINED 1