OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
arch
/
parisc
/
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
212 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bitsperlong.h
302 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
byteorder.h
194 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
errno.h
5.7 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
fcntl.h
1.21 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctl.h
1.67 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ioctls.h
3.58 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ipcbuf.h
837 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mman.h
3.36 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
msgbuf.h
1.16 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pdc.h
21.97 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
posix_types.h
726 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace.h
2.75 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sembuf.h
857 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
173 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
shmbuf.h
1.38 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sigcontext.h
557 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
siginfo.h
239 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
signal.h
2.87 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
socket.h
2.42 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sockios.h
410 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
stat.h
1.76 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
statfs.h
181 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
swab.h
1.77 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
termbits.h
4.67 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
termios.h
1.08 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
types.h
154 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
unistd.h
17.79 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 */ #ifndef _PARISC_SHMBUF_H #define _PARISC_SHMBUF_H #include <asm/bitsperlong.h> /* * The shmid64_ds structure for parisc 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 */ struct shmid64_ds { struct ipc64_perm shm_perm; /* operation perms */ #if __BITS_PER_LONG != 64 unsigned int __pad1; #endif __kernel_time_t shm_atime; /* last attach time */ #if __BITS_PER_LONG != 64 unsigned int __pad2; #endif __kernel_time_t shm_dtime; /* last detach time */ #if __BITS_PER_LONG != 64 unsigned int __pad3; #endif __kernel_time_t shm_ctime; /* last change time */ #if __BITS_PER_LONG != 64 unsigned int __pad4; #endif __kernel_size_t shm_segsz; /* size of segment (bytes) */ __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 __unused1; unsigned long __unused2; }; 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 /* _PARISC_SHMBUF_H */