Linux Kernel
3.7.1
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <string.h>
#include <sys/resource.h>
#include <as-layout.h>
#include <init.h>
#include <kern_util.h>
#include <os.h>
#include <um_malloc.h>
Go to the source code of this file.
Macros | |
#define | PGD_BOUND (4 * 1024 * 1024) |
#define | STACKSIZE (8 * 1024 * 1024) |
#define | THREAD_NAME_LEN (256) |
#define | UML_LIB_PATH ":" OS_LIB_PATH "/uml" |
Functions | |
void | scan_elf_aux (char **envp) |
int __init | main (int argc, char **argv, char **envp) |
void * | __real_malloc (int) |
void * | __wrap_malloc (int size) |
void * | __wrap_calloc (int n, int size) |
void | __real_free (void *) |
void | __wrap_free (void *ptr) |
Variables | |
long | elf_aux_hwcap |
unsigned long | high_physmem |
#define UML_LIB_PATH ":" OS_LIB_PATH "/uml" |