OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
xtensa
/
include
/
uapi
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:16 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: shmbuf.h
Close
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * include/asm-xtensa/shmbuf.h * * The shmid64_ds structure for Xtensa architecture. * Note extra padding because this structure is passed back and forth * between kernel and user space. * * Pad space is left for: * - 64-bit time_t to solve y2038 problem * - 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. * * Copyright (C) 2001 - 2005 Tensilica Inc. */ #ifndef _XTENSA_SHMBUF_H #define _XTENSA_SHMBUF_H #if defined (__XTENSA_EL__) struct shmid64_ds { struct ipc64_perm shm_perm; /* operation perms */ size_t shm_segsz; /* size of segment (bytes) */ __kernel_time_t shm_atime; /* last attach time */ unsigned long __unused1; __kernel_time_t shm_dtime; /* last detach time */ unsigned long __unused2; __kernel_time_t shm_ctime; /* last change time */ unsigned long __unused3; __kernel_pid_t shm_cpid; /* pid of creator */ __kernel_pid_t shm_lpid; /* pid of last operator */ unsigned long shm_nattch; /* no. of current attaches */ unsigned long __unused4; unsigned long __unused5; }; #elif defined (__XTENSA_EB__) struct shmid64_ds { struct ipc64_perm shm_perm; /* operation perms */ size_t shm_segsz; /* size of segment (bytes) */ __kernel_time_t shm_atime; /* last attach time */ unsigned long __unused1; __kernel_time_t shm_dtime; /* last detach time */ unsigned long __unused2; __kernel_time_t shm_ctime; /* last change time */ unsigned long __unused3; __kernel_pid_t shm_cpid; /* pid of creator */ __kernel_pid_t shm_lpid; /* pid of last operator */ unsigned long shm_nattch; /* no. of current attaches */ unsigned long __unused4; unsigned long __unused5; }; #else # error endian order not defined #endif struct shminfo64 { unsigned long shmmax; unsigned long shmmin; unsigned long shmmni; unsigned long shmseg; unsigned long shmall; unsigned long __unused1; unsigned long __unused2; unsigned long __unused3; unsigned long __unused4; }; #endif /* _XTENSA_SHMBUF_H */