Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.145.163.138
66 Domain
8.0.30
amvm
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
include /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
a.out.h
693
B
-rw-r--r--
auxvec.h
483
B
-rw-r--r--
bitsperlong.h
229
B
-rw-r--r--
boot.h
260
B
-rw-r--r--
bootparam.h
4.39
KB
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
137
B
-rw-r--r--
debugreg.h
3.15
KB
-rw-r--r--
e820.h
2.63
KB
-rw-r--r--
errno.h
31
B
-rw-r--r--
fcntl.h
31
B
-rw-r--r--
hw_breakpoint.h
6
B
-rw-r--r--
hyperv.h
12.98
KB
-rw-r--r--
ioctl.h
31
B
-rw-r--r--
ioctls.h
32
B
-rw-r--r--
ipcbuf.h
32
B
-rw-r--r--
ist.h
790
B
-rw-r--r--
kvm.h
6.81
KB
-rw-r--r--
kvm_para.h
2.8
KB
-rw-r--r--
kvm_perf.h
325
B
-rw-r--r--
ldt.h
963
B
-rw-r--r--
mce.h
1.22
KB
-rw-r--r--
mman.h
1.01
KB
-rw-r--r--
msgbuf.h
32
B
-rw-r--r--
msr-index.h
29.04
KB
-rw-r--r--
msr.h
283
B
-rw-r--r--
mtrr.h
4.06
KB
-rw-r--r--
param.h
31
B
-rw-r--r--
perf_regs.h
1.24
KB
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
161
B
-rw-r--r--
posix_types_32.h
702
B
-rw-r--r--
posix_types_64.h
546
B
-rw-r--r--
posix_types_x32.h
518
B
-rw-r--r--
prctl.h
190
B
-rw-r--r--
processor-flags.h
6.32
KB
-rw-r--r--
ptrace-abi.h
1.76
KB
-rw-r--r--
ptrace.h
1.17
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
699
B
-rw-r--r--
setup.h
6
B
-rw-r--r--
shmbuf.h
32
B
-rw-r--r--
sigcontext.h
5.11
KB
-rw-r--r--
sigcontext32.h
1.64
KB
-rw-r--r--
siginfo.h
431
B
-rw-r--r--
signal.h
2.77
KB
-rw-r--r--
socket.h
32
B
-rw-r--r--
sockios.h
33
B
-rw-r--r--
stat.h
2.89
KB
-rw-r--r--
statfs.h
353
B
-rw-r--r--
svm.h
5.09
KB
-rw-r--r--
swab.h
661
B
-rw-r--r--
termbits.h
34
B
-rw-r--r--
termios.h
33
B
-rw-r--r--
types.h
113
B
-rw-r--r--
ucontext.h
339
B
-rw-r--r--
unistd.h
296
B
-rw-r--r--
unistd_32.h
9.37
KB
-rw-r--r--
unistd_64.h
8.59
KB
-rw-r--r--
unistd_x32.h
15.12
KB
-rw-r--r--
vm86.h
2.98
KB
-rw-r--r--
vmx.h
6.53
KB
-rw-r--r--
vsyscall.h
375
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mman.h
#ifndef _ASM_X86_MMAN_H #define _ASM_X86_MMAN_H #define MAP_32BIT 0x40 /* only give out 32bit addresses */ #define MAP_HUGE_2MB (21 << MAP_HUGE_SHIFT) #define MAP_HUGE_1GB (30 << MAP_HUGE_SHIFT) #ifdef CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS /* * Take the 4 protection key bits out of the vma->vm_flags * value and turn them in to the bits that we can put in * to a pte. * * Only override these if Protection Keys are available * (which is only on 64-bit). */ #define arch_vm_get_page_prot(vm_flags) __pgprot( \ ((vm_flags) & VM_PKEY_BIT0 ? _PAGE_PKEY_BIT0 : 0) | \ ((vm_flags) & VM_PKEY_BIT1 ? _PAGE_PKEY_BIT1 : 0) | \ ((vm_flags) & VM_PKEY_BIT2 ? _PAGE_PKEY_BIT2 : 0) | \ ((vm_flags) & VM_PKEY_BIT3 ? _PAGE_PKEY_BIT3 : 0)) #define arch_calc_vm_prot_bits(prot, key) ( \ ((key) & 0x1 ? VM_PKEY_BIT0 : 0) | \ ((key) & 0x2 ? VM_PKEY_BIT1 : 0) | \ ((key) & 0x4 ? VM_PKEY_BIT2 : 0) | \ ((key) & 0x8 ? VM_PKEY_BIT3 : 0)) #endif #include <asm-generic/mman.h> #endif /* _ASM_X86_MMAN_H */
Close