#include <linux/sched.h>
#include <linux/preempt.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/kprobes.h>
#include <linux/elfcore.h>
#include <linux/tick.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/compat.h>
#include <linux/hardirq.h>
#include <linux/syscalls.h>
#include <linux/kernel.h>
#include <linux/tracehook.h>
#include <linux/signal.h>
#include <asm/stack.h>
#include <asm/switch_to.h>
#include <asm/homecache.h>
#include <asm/syscalls.h>
#include <asm/traps.h>
#include <asm/setup.h>
#include <arch/chip.h>
#include <arch/abi.h>
#include <arch/sim_def.h>
Go to the source code of this file.
|
| early_param ("idle", idle_setup) |
|
void | cpu_idle (void) |
|
void | arch_release_thread_info (struct thread_info *info) |
|
int | copy_thread (unsigned long clone_flags, unsigned long sp, unsigned long stack_size, struct task_struct *p, struct pt_regs *regs) |
|
struct task_struct * | validate_current (void) |
|
struct task_struct * | sim_notify_fork (struct task_struct *prev) |
|
int | dump_task_regs (struct task_struct *tsk, elf_gregset_t *regs) |
|
void | _prepare_arch_switch (struct task_struct *next) |
|
struct task_struct *__sched | _switch_to (struct task_struct *prev, struct task_struct *next) |
|
int | do_work_pending (struct pt_regs *regs, u32 thread_info_flags) |
|
| SYSCALL_DEFINE5 (clone, unsigned long, clone_flags, unsigned long, newsp, void __user *, parent_tidptr, void __user *, child_tidptr, struct pt_regs *, regs) |
|
| SYSCALL_DEFINE4 (execve, const char __user *, path, const char __user *const __user *, argv, const char __user *const __user *, envp, struct pt_regs *, regs) |
|
unsigned long | get_wchan (struct task_struct *p) |
|
int | kernel_thread (int(*fn)(void *), void *arg, unsigned long flags) |
|
| EXPORT_SYMBOL (kernel_thread) |
|
void | flush_thread (void) |
|
void | exit_thread (void) |
|
void | show_regs (struct pt_regs *regs) |
|
early_param |
( |
"idle" |
, |
|
|
idle_setup |
|
|
) |
| |
SYSCALL_DEFINE5 |
( |
clone |
, |
|
|
unsigned |
long, |
|
|
clone_flags |
, |
|
|
unsigned |
long, |
|
|
newsp |
, |
|
|
void __user * |
, |
|
|
parent_tidptr |
, |
|
|
void __user * |
, |
|
|
child_tidptr |
, |
|
|
struct pt_regs * |
, |
|
|
regs |
|
|
) |
| |