about summary refs log tree commit diff
path: root/arch/s390x/bits
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-07-30 14:16:12 -0400
committerRich Felker <dalias@aerifal.cx>2019-07-30 14:23:56 -0400
commit319b2d02e7799107c0090eb088be48d17df0825c (patch)
tree9d0c505dfe5fcb69c004741ddca4a208b3c72f16 /arch/s390x/bits
parent2a0bb9e0f2d87d2bcad746ffad96fb3355f1de6e (diff)
downloadmusl-319b2d02e7799107c0090eb088be48d17df0825c.tar.gz
musl-319b2d02e7799107c0090eb088be48d17df0825c.tar.xz
musl-319b2d02e7799107c0090eb088be48d17df0825c.zip
remove gratuitously-different arch-specific bits/ipc.h files
these differ from generic only in using endian-matched padding with a
short __ipc_perm_seq field in place of the int field in generic. this
is not a documented public interface anyway, and the original intent
was to use int here. some ports just inadvertently slipped in the
kernel short+padding form.
Diffstat (limited to 'arch/s390x/bits')
-rw-r--r--arch/s390x/bits/ipc.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/s390x/bits/ipc.h b/arch/s390x/bits/ipc.h
deleted file mode 100644
index b71be9ec..00000000
--- a/arch/s390x/bits/ipc.h
+++ /dev/null
@@ -1,12 +0,0 @@
-struct ipc_perm {
-	key_t __ipc_perm_key;
-	uid_t uid;
-	gid_t gid;
-	uid_t cuid;
-	gid_t cgid;
-	mode_t mode;
-	unsigned short __pad1;
-	unsigned short __ipc_perm_seq;
-	unsigned long __pad2;
-	unsigned long __pad3;
-};