about summary refs log tree commit diff
path: root/arch/x86_64
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/x86_64
parent1afe5f3e5b504992914362d6c1c0a0af55f3b32b (diff)
downloadmusl-6f2e5607d2d463dfc342489660e089553b749dcf.tar.gz
musl-6f2e5607d2d463dfc342489660e089553b749dcf.tar.xz
musl-6f2e5607d2d463dfc342489660e089553b749dcf.zip
duplicate generic bits/sem.h for each arch using it, in prep to change
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/bits/sem.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/x86_64/bits/sem.h b/arch/x86_64/bits/sem.h
new file mode 100644
index 00000000..d383d4ea
--- /dev/null
+++ b/arch/x86_64/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;
+};