Hackfut Security File Manager
Current Path:
/usr/include/asm
usr
/
include
/
asm
/
📁
..
📄
a.out.h
(693 B)
📄
auxvec.h
(281 B)
📄
bitsperlong.h
(229 B)
📄
boot.h
(260 B)
📄
bootparam.h
(2.9 KB)
📄
byteorder.h
(137 B)
📄
debugreg.h
(2.84 KB)
📄
e820.h
(2.21 KB)
📄
errno.h
(31 B)
📄
fcntl.h
(31 B)
📄
hyperv.h
(7.91 KB)
📄
ioctl.h
(31 B)
📄
ioctls.h
(32 B)
📄
ipcbuf.h
(32 B)
📄
ist.h
(790 B)
📄
kvm.h
(6.07 KB)
📄
kvm_para.h
(2.25 KB)
📄
ldt.h
(1.21 KB)
📄
mce.h
(5.12 KB)
📄
mman.h
(170 B)
📄
msgbuf.h
(32 B)
📄
msr-index.h
(22.08 KB)
📄
msr.h
(311 B)
📄
mtrr.h
(3.7 KB)
📄
param.h
(31 B)
📄
poll.h
(30 B)
📄
posix_types.h
(92 B)
📄
posix_types_32.h
(1.29 KB)
📄
posix_types_64.h
(1.28 KB)
📄
prctl.h
(190 B)
📄
processor-flags.h
(3.57 KB)
📄
ptrace-abi.h
(1.75 KB)
📄
ptrace.h
(1.16 KB)
📄
resource.h
(34 B)
📄
sembuf.h
(699 B)
📄
setup.h
(82 B)
📄
shmbuf.h
(32 B)
📄
sigcontext.h
(5.28 KB)
📄
sigcontext32.h
(1.64 KB)
📄
siginfo.h
(198 B)
📄
signal.h
(2.89 KB)
📄
socket.h
(32 B)
📄
sockios.h
(33 B)
📄
stat.h
(2.27 KB)
📄
statfs.h
(353 B)
📄
swab.h
(1.15 KB)
📄
termbits.h
(34 B)
📄
termios.h
(33 B)
📄
types.h
(114 B)
📄
ucontext.h
(339 B)
📄
unistd.h
(82 B)
📄
unistd_32.h
(10.44 KB)
📄
unistd_64.h
(23.67 KB)
📄
vm86.h
(2.98 KB)
📄
vsyscall.h
(375 B)
Editing: ptrace.h
#ifndef _ASM_X86_PTRACE_H #define _ASM_X86_PTRACE_H /* For */ #include <asm/ptrace-abi.h> #include <asm/processor-flags.h> #ifndef __ASSEMBLY__ #ifdef __i386__ /* this struct defines the way the registers are stored on the stack during a system call. */ struct pt_regs { long ebx; long ecx; long edx; long esi; long edi; long ebp; long eax; int xds; int xes; int xfs; int xgs; long orig_eax; long eip; int xcs; long eflags; long esp; int xss; }; #else /* __i386__ */ struct pt_regs { unsigned long r15; unsigned long r14; unsigned long r13; unsigned long r12; unsigned long rbp; unsigned long rbx; /* arguments: non interrupts/non tracing syscalls only save upto here*/ unsigned long r11; unsigned long r10; unsigned long r9; unsigned long r8; unsigned long rax; unsigned long rcx; unsigned long rdx; unsigned long rsi; unsigned long rdi; unsigned long orig_rax; /* end of arguments */ /* cpu exception frame or undefined */ unsigned long rip; unsigned long cs; unsigned long eflags; unsigned long rsp; unsigned long ss; /* top of stack page */ }; #endif /* !__i386__ */ #endif /* !__ASSEMBLY__ */ #endif /* _ASM_X86_PTRACE_H */
Upload File
Create Folder