Linux r-1tbfree-gecko-e8ip2zsa-2f967-wvg4t 6.12.63-84.121.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Dec 31 02:07:30 UTC 2025 x86_64
PHP/8.5.2 (Development Server)
: | : 10.16.14.243
Cant Read [ /etc/named.conf ]
8.5.2
root
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
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
powerpc64le-linux-gnu /
asm /
[ HOME SHELL ]
Name
Size
Permission
Action
auxvec.h
1.8
KB
-rw-r--r--
bitsperlong.h
312
B
-rw-r--r--
bootx.h
4.3
KB
-rw-r--r--
bpf_perf_event.h
40
B
-rw-r--r--
byteorder.h
550
B
-rw-r--r--
cputable.h
2.33
KB
-rw-r--r--
eeh.h
2.18
KB
-rw-r--r--
elf.h
13.09
KB
-rw-r--r--
epapr_hcalls.h
4.16
KB
-rw-r--r--
errno.h
278
B
-rw-r--r--
fcntl.h
367
B
-rw-r--r--
ioctl.h
302
B
-rw-r--r--
ioctls.h
4.26
KB
-rw-r--r--
ipcbuf.h
1.03
KB
-rw-r--r--
kvm.h
25.51
KB
-rw-r--r--
kvm_para.h
2.71
KB
-rw-r--r--
mman.h
1.25
KB
-rw-r--r--
msgbuf.h
1.13
KB
-rw-r--r--
nvram.h
2.01
KB
-rw-r--r--
opal-prd.h
1.73
KB
-rw-r--r--
papr-miscdev.h
184
B
-rw-r--r--
papr-sysparm.h
2.01
KB
-rw-r--r--
papr-vpd.h
538
B
-rw-r--r--
param.h
31
B
-rw-r--r--
perf_event.h
550
B
-rw-r--r--
perf_regs.h
2.68
KB
-rw-r--r--
poll.h
30
B
-rw-r--r--
posix_types.h
594
B
-rw-r--r--
ps3fb.h
1.74
KB
-rw-r--r--
ptrace.h
7.54
KB
-rw-r--r--
resource.h
34
B
-rw-r--r--
sembuf.h
1.12
KB
-rw-r--r--
setup.h
188
B
-rw-r--r--
shmbuf.h
1.68
KB
-rw-r--r--
sigcontext.h
4.24
KB
-rw-r--r--
siginfo.h
33
B
-rw-r--r--
signal.h
2.49
KB
-rw-r--r--
socket.h
600
B
-rw-r--r--
sockios.h
33
B
-rw-r--r--
spu_info.h
774
B
-rw-r--r--
stat.h
2.31
KB
-rw-r--r--
statfs.h
32
B
-rw-r--r--
swab.h
560
B
-rw-r--r--
termbits.h
4.01
KB
-rw-r--r--
termios.h
1.66
KB
-rw-r--r--
tm.h
734
B
-rw-r--r--
types.h
1.27
KB
-rw-r--r--
ucontext.h
961
B
-rw-r--r--
unistd.h
562
B
-rw-r--r--
unistd_32.h
11.78
KB
-rw-r--r--
unistd_64.h
10.89
KB
-rw-r--r--
vas-api.h
649
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sigcontext.h
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */ #ifndef _ASM_POWERPC_SIGCONTEXT_H #define _ASM_POWERPC_SIGCONTEXT_H /* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #include <asm/ptrace.h> #ifdef __powerpc64__ #include <asm/elf.h> #endif struct sigcontext { unsigned long _unused[4]; int signal; #ifdef __powerpc64__ int _pad0; #endif unsigned long handler; unsigned long oldmask; struct pt_regs *regs; #ifdef __powerpc64__ elf_gregset_t gp_regs; elf_fpregset_t fp_regs; /* * To maintain compatibility with current implementations the sigcontext is * extended by appending a pointer (v_regs) to a quadword type (elf_vrreg_t) * followed by an unstructured (vmx_reserve) field of 101 doublewords. This * allows the array of vector registers to be quadword aligned independent of * the alignment of the containing sigcontext or ucontext. It is the * responsibility of the code setting the sigcontext to set this pointer to * either NULL (if this processor does not support the VMX feature) or the * address of the first quadword within the allocated (vmx_reserve) area. * * The pointer (v_regs) of vector type (elf_vrreg_t) is type compatible with * an array of 34 quadword entries (elf_vrregset_t). The entries with * indexes 0-31 contain the corresponding vector registers. The entry with * index 32 contains the vscr as the last word (offset 12) within the * quadword. This allows the vscr to be stored as either a quadword (since * it must be copied via a vector register to/from storage) or as a word. * The entry with index 33 contains the vrsave as the first word (offset 0) * within the quadword. * * Part of the VSX data is stored here also by extending vmx_restore * by an additional 32 double words. Architecturally the layout of * the VSR registers and how they overlap on top of the legacy FPR and * VR registers is shown below: * * VSR doubleword 0 VSR doubleword 1 * ---------------------------------------------------------------- * VSR[0] | FPR[0] | | * ---------------------------------------------------------------- * VSR[1] | FPR[1] | | * ---------------------------------------------------------------- * | ... | | * | ... | | * ---------------------------------------------------------------- * VSR[30] | FPR[30] | | * ---------------------------------------------------------------- * VSR[31] | FPR[31] | | * ---------------------------------------------------------------- * VSR[32] | VR[0] | * ---------------------------------------------------------------- * VSR[33] | VR[1] | * ---------------------------------------------------------------- * | ... | * | ... | * ---------------------------------------------------------------- * VSR[62] | VR[30] | * ---------------------------------------------------------------- * VSR[63] | VR[31] | * ---------------------------------------------------------------- * * FPR/VSR 0-31 doubleword 0 is stored in fp_regs, and VMX/VSR 32-63 * is stored at the start of vmx_reserve. vmx_reserve is extended for * backwards compatility to store VSR 0-31 doubleword 1 after the VMX * registers and vscr/vrsave. */ elf_vrreg_t *v_regs; long vmx_reserve[ELF_NVRREG + ELF_NVRREG + 1 + 32]; #endif }; #endif /* _ASM_POWERPC_SIGCONTEXT_H */
Close