OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
xtensa
/
include
/
uapi
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:13 AM
rwxr-xr-x
📄
Kbuild
307 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
auxvec.h
60 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
byteorder.h
340 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctls.h
4.73 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ipcbuf.h
905 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mman.h
4.46 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
msgbuf.h
1.55 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
param.h
635 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
poll.h
509 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
posix_types.h
1.13 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace.h
976 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
sembuf.h
1.22 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
462 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
shmbuf.h
2.12 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sigcontext.h
681 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
signal.h
3.01 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
socket.h
2.41 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sockios.h
863 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
stat.h
1.75 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
swab.h
2.13 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
termbits.h
4.88 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
types.h
712 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unistd.h
22.99 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: ipcbuf.h
Close
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * include/asm-xtensa/ipcbuf.h * * The ipc64_perm structure for the Xtensa architecture. * Note extra padding because this structure is passed back and forth * between kernel and user space. * * Copyright (C) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_IPCBUF_H #define _XTENSA_IPCBUF_H /* * Pad space is left for: * - 32-bit mode_t and seq * - 2 miscellaneous 32-bit values * * This file is subject to the terms and conditions of the GNU General * Public License. See the file "COPYING" in the main directory of * this archive for more details. */ struct ipc64_perm { __kernel_key_t key; __kernel_uid32_t uid; __kernel_gid32_t gid; __kernel_uid32_t cuid; __kernel_gid32_t cgid; __kernel_mode_t mode; unsigned long seq; unsigned long __unused1; unsigned long __unused2; }; #endif /* _XTENSA_IPCBUF_H */