diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-05-06 17:51:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:13:01 -0400 |
commit | 9218b1714949095bff9d9739d80f431d58e561d6 (patch) | |
tree | a107cbf6e36b7910461ab8c018687b36e9d22e3a /arch/um/include | |
parent | 24fa6c0832f4513ac897082d7d803970a40cc1b0 (diff) |
uml: remove user_util.h
user_util.h isn't needed any more, so delete it and remove all includes of it.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/include')
-rw-r--r-- | arch/um/include/user_util.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/arch/um/include/user_util.h b/arch/um/include/user_util.h deleted file mode 100644 index 7fa5c68f0620..000000000000 --- a/arch/um/include/user_util.h +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #ifndef __USER_UTIL_H__ | ||
7 | #define __USER_UTIL_H__ | ||
8 | |||
9 | #include "sysdep/ptrace.h" | ||
10 | |||
11 | extern int mode_tt; | ||
12 | |||
13 | extern int grantpt(int __fd); | ||
14 | extern int unlockpt(int __fd); | ||
15 | |||
16 | extern void *add_signal_handler(int sig, void (*handler)(int)); | ||
17 | extern void input_cb(void (*proc)(void *), void *arg, int arg_len); | ||
18 | extern int switcheroo(int fd, int prot, void *from, void *to, int size); | ||
19 | extern void do_exec(int old_pid, int new_pid); | ||
20 | extern void tracer_panic(char *msg, ...) | ||
21 | __attribute__ ((format (printf, 1, 2))); | ||
22 | extern int detach(int pid, int sig); | ||
23 | extern int attach(int pid); | ||
24 | extern void kill_child_dead(int pid); | ||
25 | extern int cont(int pid); | ||
26 | extern void check_sigio(void); | ||
27 | extern int raw(int fd); | ||
28 | |||
29 | #endif | ||