????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.144.145.38 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-3.13.0-35/arch/um/include/shared/ |
Upload File : |
/* * Copyright (C) 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ #ifndef __START_H__ #define __START_H__ #include <generated/asm-offsets.h> /* * Stolen from linux/const.h, which can't be directly included since * this is used in userspace code, which has no access to the kernel * headers. Changed to be suitable for adding casts to the start, * rather than "UL" to the end. */ /* Some constant macros are used in both assembler and * C code. Therefore we cannot annotate them always with * 'UL' and other type specifiers unilaterally. We * use the following macros to deal with this. */ #ifdef __ASSEMBLY__ #define _UML_AC(X, Y) (Y) #else #define __UML_AC(X, Y) (X(Y)) #define _UML_AC(X, Y) __UML_AC(X, Y) #endif #define STUB_START _UML_AC(, 0x100000) #define STUB_CODE _UML_AC((unsigned long), STUB_START) #define STUB_DATA _UML_AC((unsigned long), STUB_CODE + UM_KERN_PAGE_SIZE) #define STUB_END _UML_AC((unsigned long), STUB_DATA + UM_KERN_PAGE_SIZE) #ifndef __ASSEMBLY__ #include <sysdep/ptrace.h> struct cpu_task { int pid; void *task; }; extern struct cpu_task cpu_tasks[]; extern unsigned long high_physmem; extern unsigned long uml_physmem; extern unsigned long uml_reserved; extern unsigned long end_vm; extern unsigned long start_vm; extern unsigned long long highmem; extern unsigned long brk_start; extern unsigned long host_task_size; extern int linux_main(int argc, char **argv); struct siginfo; extern void (*sig_info[])(int, struct siginfo *si, struct uml_pt_regs *); #endif #endif