From 793bb9c3f7dceaf4b3fb1c260154dc2fe82a9170 Mon Sep 17 00:00:00 2001 From: dchagin Date: Sat, 9 Jan 2016 15:56:01 +0000 Subject: MFC r283416: x86_64 Linux do not use multiplexing on ipc system calls. Move struct ipc_perm definition to the MD path as it differs for 64 and 32 bit platform. --- sys/i386/linux/linux.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'sys/i386') diff --git a/sys/i386/linux/linux.h b/sys/i386/linux/linux.h index 8b168c4..e0b6866 100644 --- a/sys/i386/linux/linux.h +++ b/sys/i386/linux/linux.h @@ -550,6 +550,16 @@ union l_semun { void *__pad; }; +struct l_ipc_perm { + l_key_t key; + l_uid16_t uid; + l_gid16_t gid; + l_uid16_t cuid; + l_gid16_t cgid; + l_ushort mode; + l_ushort seq; +}; + /* * Socket defines */ -- cgit v1.1