/
usr
/
include
/
asm
/
/usr/include/asm
mkdir
upload
Name
Size
Mode
Actions
a.out.h
693
0644
edit
dl
rm
auxvec.h
281
0644
edit
dl
rm
bitsperlong.h
229
0644
edit
dl
rm
boot.h
260
0644
edit
dl
rm
bootparam.h
2970
0644
edit
dl
rm
byteorder.h
137
0644
edit
dl
rm
debugreg.h
2904
0644
edit
dl
rm
e820.h
2259
0644
edit
dl
rm
errno.h
31
0644
edit
dl
rm
fcntl.h
31
0644
edit
dl
rm
hyperv.h
8103
0644
edit
dl
rm
ioctl.h
31
0644
edit
dl
rm
ioctls.h
32
0644
edit
dl
rm
ipcbuf.h
32
0644
edit
dl
rm
ist.h
790
0644
edit
dl
rm
kvm.h
6212
0644
edit
dl
rm
kvm_para.h
2305
0644
edit
dl
rm
ldt.h
1243
0644
edit
dl
rm
mce.h
5241
0644
edit
dl
rm
mman.h
170
0644
edit
dl
rm
msgbuf.h
32
0644
edit
dl
rm
msr-index.h
23412
0644
edit
dl
rm
msr.h
311
0644
edit
dl
rm
mtrr.h
3788
0644
edit
dl
rm
param.h
31
0644
edit
dl
rm
poll.h
30
0644
edit
dl
rm
posix_types.h
92
0644
edit
dl
rm
posix_types_32.h
1316
0644
edit
dl
rm
posix_types_64.h
1306
0644
edit
dl
rm
prctl.h
190
0644
edit
dl
rm
processor-flags.h
3656
0644
edit
dl
rm
ptrace-abi.h
1797
0644
edit
dl
rm
ptrace.h
1192
0644
edit
dl
rm
resource.h
34
0644
edit
dl
rm
sembuf.h
699
0644
edit
dl
rm
setup.h
82
0644
edit
dl
rm
shmbuf.h
32
0644
edit
dl
rm
sigcontext.h
5403
0644
edit
dl
rm
sigcontext32.h
1684
0644
edit
dl
rm
siginfo.h
198
0644
edit
dl
rm
signal.h
2958
0644
edit
dl
rm
socket.h
32
0644
edit
dl
rm
sockios.h
33
0644
edit
dl
rm
stat.h
2324
0644
edit
dl
rm
statfs.h
353
0644
edit
dl
rm
swab.h
1179
0644
edit
dl
rm
termbits.h
34
0644
edit
dl
rm
termios.h
33
0644
edit
dl
rm
types.h
114
0644
edit
dl
rm
ucontext.h
339
0644
edit
dl
rm
unistd.h
82
0644
edit
dl
rm
unistd_32.h
10692
0644
edit
dl
rm
unistd_64.h
24238
0644
edit
dl
rm
vm86.h
3055
0644
edit
dl
rm
vsyscall.h
375
0644
edit
dl
rm
Edit:
/usr/include/asm/ptrace.h
(1192B)
#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 */
Save
cmd:
run