aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/include
diff options
context:
space:
mode:
authorJeff Dike <jdike@addtoit.com>2007-02-10 04:44:14 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-02-11 13:51:22 -0500
commit27aa6ef3c0e8220b27b0a8d2d0bae7cd0a6d2f78 (patch)
tree322d8ee8ad1de886c33c1fda0bdd1c9cbab8a82a /arch/um/include
parent6d1b18b16fc917e5c9af568a53c7e37923821d70 (diff)
[PATCH] uml: make signal handlers static
A bunch of the signal handlers can be made static. Signed-off-by: Jeff Dike <jdike@addtoit.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/kern_util.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/um/include/kern_util.h b/arch/um/include/kern_util.h
index 3368ef97437..173af029d12 100644
--- a/arch/um/include/kern_util.h
+++ b/arch/um/include/kern_util.h
@@ -87,7 +87,6 @@ extern void timer_irq(union uml_pt_regs *regs);
87extern void unprotect_stack(unsigned long stack); 87extern void unprotect_stack(unsigned long stack);
88extern void do_uml_exitcalls(void); 88extern void do_uml_exitcalls(void);
89extern int attach_debugger(int idle_pid, int pid, int stop); 89extern int attach_debugger(int idle_pid, int pid, int stop);
90extern void bad_segv(struct faultinfo fi, unsigned long ip);
91extern int config_gdb(char *str); 90extern int config_gdb(char *str);
92extern int remove_gdb(void); 91extern int remove_gdb(void);
93extern char *uml_strdup(char *string); 92extern char *uml_strdup(char *string);
@@ -103,8 +102,6 @@ extern int clear_user_proc(void *buf, int size);
103extern int copy_to_user_proc(void *to, void *from, int size); 102extern int copy_to_user_proc(void *to, void *from, int size);
104extern int copy_from_user_proc(void *to, void *from, int size); 103extern int copy_from_user_proc(void *to, void *from, int size);
105extern int strlen_user_proc(char *str); 104extern int strlen_user_proc(char *str);
106extern void bus_handler(int sig, union uml_pt_regs *regs);
107extern void winch(int sig, union uml_pt_regs *regs);
108extern long execute_syscall(void *r); 105extern long execute_syscall(void *r);
109extern int smp_sigio_handler(void); 106extern int smp_sigio_handler(void);
110extern void *get_current(void); 107extern void *get_current(void);
@@ -119,7 +116,6 @@ extern void time_init_kern(void);
119 116
120/* Are we disallowed to sleep? Used to choose between GFP_KERNEL and GFP_ATOMIC. */ 117/* Are we disallowed to sleep? Used to choose between GFP_KERNEL and GFP_ATOMIC. */
121extern int __cant_sleep(void); 118extern int __cant_sleep(void);
122extern void segv_handler(int sig, union uml_pt_regs *regs);
123extern void sigio_handler(int sig, union uml_pt_regs *regs); 119extern void sigio_handler(int sig, union uml_pt_regs *regs);
124 120
125#endif 121#endif