OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
um
/
include
/
asm
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:13 AM
rwxr-xr-x
📄
Kbuild
702 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
a.out-core.h
695 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
bugs.h
111 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
cache.h
483 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
common.lds.S
1.76 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
dma.h
180 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
fixmap.h
1.63 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
hardirq.h
558 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
io.h
339 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
irq.h
493 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
irqflags.h
865 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kmap_types.h
219 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kvm_para.h
34 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mmu.h
558 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mmu_context.h
1.87 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
page.h
3.15 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgalloc.h
1.46 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable-2level.h
1.32 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable-3level.h
2.88 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
pgtable.h
9.88 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
processor-generic.h
1.87 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace-generic.h
1.13 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sections.h
219 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
setup.h
273 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
smp.h
121 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
stacktrace.h
1.06 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
syscall-generic.h
2.67 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
sysrq.h
182 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
thread_info.h
2.15 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
timex.h
151 bytes
06/16/2023 05:32:39 PM
rw-r--r--
📄
tlb.h
4.23 KB
06/16/2023 05:32:39 PM
rw-r--r--
📄
tlbflush.h
978 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
uaccess.h
1.65 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
unwind.h
213 bytes
01/28/2018 09:20:33 PM
rw-r--r--
Editing: ptrace-generic.h
Close
/* * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ #ifndef __UM_PTRACE_GENERIC_H #define __UM_PTRACE_GENERIC_H #ifndef __ASSEMBLY__ #include <sysdep/ptrace.h> struct pt_regs { struct uml_pt_regs regs; }; #define arch_has_single_step() (1) #define EMPTY_REGS { .regs = EMPTY_UML_PT_REGS } #define PT_REGS_IP(r) UPT_IP(&(r)->regs) #define PT_REGS_SP(r) UPT_SP(&(r)->regs) #define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs) #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs) #define instruction_pointer(regs) PT_REGS_IP(regs) #define PTRACE_OLDSETOPTIONS 21 struct task_struct; extern long subarch_ptrace(struct task_struct *child, long request, unsigned long addr, unsigned long data); extern unsigned long getreg(struct task_struct *child, int regno); extern int putreg(struct task_struct *child, int regno, unsigned long value); extern int arch_copy_tls(struct task_struct *new); extern void clear_flushed_tls(struct task_struct *task); extern int syscall_trace_enter(struct pt_regs *regs); extern void syscall_trace_leave(struct pt_regs *regs); #endif #endif