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: sembuf.h
Close
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * include/asm-xtensa/sembuf.h * * The semid64_ds structure for Xtensa architecture. * * 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. * * 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 * */ #ifndef _XTENSA_SEMBUF_H #define _XTENSA_SEMBUF_H #include <asm/byteorder.h> struct semid64_ds { struct ipc64_perm sem_perm; /* permissions .. see ipc.h */ #ifdef __XTENSA_EL__ __kernel_time_t sem_otime; /* last semop time */ unsigned long __unused1; __kernel_time_t sem_ctime; /* last change time */ unsigned long __unused2; #else unsigned long __unused1; __kernel_time_t sem_otime; /* last semop time */ unsigned long __unused2; __kernel_time_t sem_ctime; /* last change time */ #endif unsigned long sem_nsems; /* no. of semaphores in array */ unsigned long __unused3; unsigned long __unused4; }; #endif /* __ASM_XTENSA_SEMBUF_H */