OLD | NEW |
1 /* This is the structure used for the rt_sigaction syscall on most archs, | 1 /* This is the structure used for the rt_sigaction syscall on most archs, |
2 * but it can be overridden by a file with the same name in the top-level | 2 * but it can be overridden by a file with the same name in the top-level |
3 * arch dir for a given arch, if necessary. */ | 3 * arch dir for a given arch, if necessary. */ |
4 struct k_sigaction { | 4 struct k_sigaction { |
5 » void (*handler)(int); | 5 void (*handler)(int); |
6 » unsigned long flags; | 6 unsigned long flags; |
7 » void (*restorer)(void); | 7 void (*restorer)(void); |
8 » unsigned mask[2]; | 8 unsigned mask[2]; |
9 }; | 9 }; |
10 | 10 |
11 void __restore(), __restore_rt(); | 11 void __restore(), __restore_rt(); |
OLD | NEW |