Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 216.73.216.206
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
asm-generic /
Delete
Unzip
Name
Size
Permission
Date
Action
auxvec.h
218
B
-rw-r--r--
2025-05-21 15:48
bitsperlong.h
564
B
-rw-r--r--
2025-05-21 15:48
bpf_perf_event.h
238
B
-rw-r--r--
2025-05-21 15:48
errno-base.h
1.57
KB
-rw-r--r--
2025-05-21 15:48
errno.h
5.52
KB
-rw-r--r--
2025-05-21 15:48
fcntl.h
5.3
KB
-rw-r--r--
2025-05-21 15:48
hugetlb_encode.h
1.76
KB
-rw-r--r--
2025-05-21 15:48
int-l64.h
718
B
-rw-r--r--
2025-05-21 15:48
int-ll64.h
864
B
-rw-r--r--
2025-05-21 15:48
ioctl.h
3.4
KB
-rw-r--r--
2025-05-21 15:48
ioctls.h
3.89
KB
-rw-r--r--
2025-05-21 15:48
ipcbuf.h
1003
B
-rw-r--r--
2025-05-21 15:48
kvm_para.h
96
B
-rw-r--r--
2025-05-21 15:48
mman-common.h
3.46
KB
-rw-r--r--
2025-05-21 15:48
mman.h
740
B
-rw-r--r--
2025-05-21 15:48
msgbuf.h
1.58
KB
-rw-r--r--
2025-05-21 15:48
param.h
353
B
-rw-r--r--
2025-05-21 15:48
poll.h
878
B
-rw-r--r--
2025-05-21 15:48
posix_types.h
2.32
KB
-rw-r--r--
2025-05-21 15:48
resource.h
1.83
KB
-rw-r--r--
2025-05-21 15:48
sembuf.h
1.51
KB
-rw-r--r--
2025-05-21 15:48
setup.h
190
B
-rw-r--r--
2025-05-21 15:48
shmbuf.h
1.79
KB
-rw-r--r--
2025-05-21 15:48
shmparam.h
231
B
-rw-r--r--
2025-05-21 15:48
siginfo.h
12.21
KB
-rw-r--r--
2025-05-21 15:48
signal-defs.h
800
B
-rw-r--r--
2025-05-21 15:48
signal.h
2.65
KB
-rw-r--r--
2025-05-21 15:48
socket.h
2.42
KB
-rw-r--r--
2025-05-21 15:48
sockios.h
439
B
-rw-r--r--
2025-05-21 15:48
stat.h
2.57
KB
-rw-r--r--
2025-05-21 15:48
statfs.h
1.8
KB
-rw-r--r--
2025-05-21 15:48
swab.h
502
B
-rw-r--r--
2025-05-21 15:48
termbits.h
4.61
KB
-rw-r--r--
2025-05-21 15:48
termios.h
1.34
KB
-rw-r--r--
2025-05-21 15:48
types.h
233
B
-rw-r--r--
2025-05-21 15:48
ucontext.h
357
B
-rw-r--r--
2025-05-21 15:48
unistd.h
27.52
KB
-rw-r--r--
2025-05-21 15:48
Save
Rename
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ASM_GENERIC_SHMBUF_H #define __ASM_GENERIC_SHMBUF_H #include <asm/bitsperlong.h> /* * The shmid64_ds structure for x86 architecture. * Note extra padding because this structure is passed back and forth * between kernel and user space. * * shmid64_ds was originally meant to be architecture specific, but * everyone just ended up making identical copies without specific * optimizations, so we may just as well all use the same one. * * 64 bit architectures typically define a 64 bit __kernel_time_t, * so they do not need the first two padding words. * On big-endian systems, the padding is in the wrong place. * * * Pad space is left for: * - 2 miscellaneous 32-bit values */ struct shmid64_ds { struct ipc64_perm shm_perm; /* operation perms */ size_t shm_segsz; /* size of segment (bytes) */ #if __BITS_PER_LONG == 64 __kernel_time_t shm_atime; /* last attach time */ __kernel_time_t shm_dtime; /* last detach time */ __kernel_time_t shm_ctime; /* last change time */ #else unsigned long shm_atime; /* last attach time */ unsigned long shm_atime_high; unsigned long shm_dtime; /* last detach time */ unsigned long shm_dtime_high; unsigned long shm_ctime; /* last change time */ unsigned long shm_ctime_high; #endif __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; }; 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 /* __ASM_GENERIC_SHMBUF_H */