SM0 She11
Path:
/
/
usr
/
include
/
asm
Full Path (server): /usr/include/asm
Create Fil3
Upl04d Fil3
📄 a.out.h
[E]
[D]
[R]
📄 auxvec.h
[E]
[D]
[R]
📄 bitsperlong.h
[E]
[D]
[R]
📄 boot.h
[E]
[D]
[R]
📄 bootparam.h
[E]
[D]
[R]
📄 bpf_perf_event.h
[E]
[D]
[R]
📄 byteorder.h
[E]
[D]
[R]
📄 debugreg.h
[E]
[D]
[R]
📄 e820.h
[E]
[D]
[R]
📄 errno.h
[E]
[D]
[R]
📄 fcntl.h
[E]
[D]
[R]
📄 hw_breakpoint.h
[E]
[D]
[R]
📄 hyperv.h
[E]
[D]
[R]
📄 ioctl.h
[E]
[D]
[R]
📄 ioctls.h
[E]
[D]
[R]
📄 ipcbuf.h
[E]
[D]
[R]
📄 ist.h
[E]
[D]
[R]
📄 kvm.h
[E]
[D]
[R]
📄 kvm_para.h
[E]
[D]
[R]
📄 kvm_perf.h
[E]
[D]
[R]
📄 ldt.h
[E]
[D]
[R]
📄 mce.h
[E]
[D]
[R]
📄 mman.h
[E]
[D]
[R]
📄 msgbuf.h
[E]
[D]
[R]
📄 msr-index.h
[E]
[D]
[R]
📄 msr.h
[E]
[D]
[R]
📄 mtrr.h
[E]
[D]
[R]
📄 param.h
[E]
[D]
[R]
📄 perf_regs.h
[E]
[D]
[R]
📄 poll.h
[E]
[D]
[R]
📄 posix_types.h
[E]
[D]
[R]
📄 posix_types_32.h
[E]
[D]
[R]
📄 posix_types_64.h
[E]
[D]
[R]
📄 posix_types_x32.h
[E]
[D]
[R]
📄 prctl.h
[E]
[D]
[R]
📄 processor-flags.h
[E]
[D]
[R]
📄 ptrace-abi.h
[E]
[D]
[R]
📄 ptrace.h
[E]
[D]
[R]
📄 resource.h
[E]
[D]
[R]
📄 sembuf.h
[E]
[D]
[R]
📄 setup.h
[E]
[D]
[R]
📄 shmbuf.h
[E]
[D]
[R]
📄 sigcontext.h
[E]
[D]
[R]
📄 sigcontext32.h
[E]
[D]
[R]
📄 siginfo.h
[E]
[D]
[R]
📄 signal.h
[E]
[D]
[R]
📄 socket.h
[E]
[D]
[R]
📄 sockios.h
[E]
[D]
[R]
📄 stat.h
[E]
[D]
[R]
📄 statfs.h
[E]
[D]
[R]
📄 svm.h
[E]
[D]
[R]
📄 swab.h
[E]
[D]
[R]
📄 termbits.h
[E]
[D]
[R]
📄 termios.h
[E]
[D]
[R]
📄 types.h
[E]
[D]
[R]
📄 ucontext.h
[E]
[D]
[R]
📄 unistd.h
[E]
[D]
[R]
📄 unistd_32.h
[E]
[D]
[R]
📄 unistd_64.h
[E]
[D]
[R]
📄 unistd_x32.h
[E]
[D]
[R]
📄 vm86.h
[E]
[D]
[R]
📄 vmx.h
[E]
[D]
[R]
📄 vsyscall.h
[E]
[D]
[R]
Editing: ldt.h
/* * ldt.h * * Definitions of structures used with the modify_ldt system call. */ #ifndef _ASM_X86_LDT_H #define _ASM_X86_LDT_H /* Maximum number of LDT entries supported. */ #define LDT_ENTRIES 8192 /* The size of each LDT entry. */ #define LDT_ENTRY_SIZE 8 #ifndef __ASSEMBLY__ /* * Note on 64bit base and limit is ignored and you cannot set DS/ES/CS * not to the default values if you still want to do syscalls. This * call is more for 32bit mode therefore. */ struct user_desc { unsigned int entry_number; unsigned int base_addr; unsigned int limit; unsigned int seg_32bit:1; unsigned int contents:2; unsigned int read_exec_only:1; unsigned int limit_in_pages:1; unsigned int seg_not_present:1; unsigned int useable:1; #ifdef __x86_64__ unsigned int lm:1; #endif }; #define MODIFY_LDT_CONTENTS_DATA 0 #define MODIFY_LDT_CONTENTS_STACK 1 #define MODIFY_LDT_CONTENTS_CODE 2 #endif /* !__ASSEMBLY__ */ #endif /* _ASM_X86_LDT_H */
Save