OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
um
/
include
/
shared
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:13 AM
rwxr-xr-x
📄
aio.h
530 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
arch.h
350 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
as-layout.h
1.56 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
common-offsets.h
1.05 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
elf_user.h
385 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
frame_kern.h
392 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
init.h
3.89 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
irq_kern.h
409 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
irq_user.h
652 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kern.h
569 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
kern_util.h
2.1 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
longjmp.h
440 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mem.h
455 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
mem_user.h
2.42 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
net_kern.h
1.81 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
net_user.h
1.6 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
os.h
10.63 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
ptrace_user.h
1.88 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
registers.h
1002 bytes
06/16/2023 05:32:39 PM
rw-r--r--
📄
sigio.h
271 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📁
skas
-
05/09/2024 07:14:16 AM
rwxr-xr-x
📄
timer-internal.h
275 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
um_malloc.h
384 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
user.h
1.45 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: user.h
Close
/* * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ #ifndef __USER_H__ #define __USER_H__ #include <generated/asm-offsets.h> /* * The usual definition - copied here because the kernel provides its own, * fancier, type-safe, definition. Using that one would require * copying too much infrastructure for my taste, so userspace files * get less checking than kernel files. */ #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) /* This is to get size_t */ #ifndef __UM_HOST__ #include <linux/types.h> #else #include <stddef.h> #endif extern void panic(const char *fmt, ...) __attribute__ ((format (printf, 1, 2))); /* Requires preincluding include/linux/kern_levels.h */ #define UM_KERN_EMERG KERN_EMERG #define UM_KERN_ALERT KERN_ALERT #define UM_KERN_CRIT KERN_CRIT #define UM_KERN_ERR KERN_ERR #define UM_KERN_WARNING KERN_WARNING #define UM_KERN_NOTICE KERN_NOTICE #define UM_KERN_INFO KERN_INFO #define UM_KERN_DEBUG KERN_DEBUG #define UM_KERN_CONT KERN_CONT #ifdef UML_CONFIG_PRINTK extern int printk(const char *fmt, ...) __attribute__ ((format (printf, 1, 2))); #else static inline int printk(const char *fmt, ...) { return 0; } #endif extern int in_aton(char *str); extern size_t strlcpy(char *, const char *, size_t); extern size_t strlcat(char *, const char *, size_t); /* Copied from linux/compiler-gcc.h since we can't include it directly */ #define barrier() __asm__ __volatile__("": : :"memory") #endif