RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / um / include / tt / mode-tt.h
blob2823cd56eea28c970f4df5cb23bb31332521e633
1 /*
2 * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #ifndef __MODE_TT_H__
7 #define __MODE_TT_H__
9 #include "sysdep/ptrace.h"
11 enum { OP_NONE, OP_EXEC, OP_FORK, OP_TRACE_ON, OP_REBOOT, OP_HALT, OP_CB };
13 extern int tracing_pid;
15 extern int tracer(int (*init_proc)(void *), void *sp);
16 extern void sig_handler_common_tt(int sig, void *sc);
17 extern void syscall_handler_tt(int sig, union uml_pt_regs *regs);
18 extern void reboot_tt(void);
19 extern void halt_tt(void);
20 extern int is_tracer_winch(int pid, int fd, void *data);
21 extern void kill_off_processes_tt(void);
23 #endif