ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / um / kernel / tt / trap_user.c
1 /* 
2  * Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
3  * Licensed under the GPL
4  */
5
6 #include <stdlib.h>
7 #include <errno.h>
8 #include <signal.h>
9 #include <asm/sigcontext.h>
10 #include "sysdep/ptrace.h"
11 #include "signal_user.h"
12 #include "user_util.h"
13 #include "kern_util.h"
14 #include "task.h"
15 #include "tt.h"
16
17 void sig_handler_common_tt(int sig, void *sc_ptr)
18 {
19         struct sigcontext *sc = sc_ptr;
20         struct tt_regs save_regs, *r;
21         struct signal_info *info;
22         int save_errno = errno, is_user;
23
24         unprotect_kernel_mem();
25
26         r = &TASK_REGS(get_current())->tt;
27         save_regs = *r;
28         is_user = user_context(SC_SP(sc));
29         r->sc = sc;
30         if(sig != SIGUSR2) 
31                 r->syscall = -1;
32
33         change_sig(SIGUSR1, 1);
34         info = &sig_info[sig];
35         if(!info->is_irq) unblock_signals();
36
37         (*info->handler)(sig, (union uml_pt_regs *) r);
38
39         if(is_user){
40                 interrupt_end();
41                 block_signals();
42                 change_sig(SIGUSR1, 0);
43                 set_user_mode(NULL);
44         }
45         *r = save_regs;
46         errno = save_errno;
47         if(is_user) protect_kernel_mem();
48 }
49
50 /*
51  * Overrides for Emacs so that we follow Linus's tabbing style.
52  * Emacs will notice this stuff at the end of the file and automatically
53  * adjust the settings for this buffer only.  This must remain at the end
54  * of the file.
55  * ---------------------------------------------------------------------------
56  * Local variables:
57  * c-file-style: "linux"
58  * End:
59  */