signal.h (92a3ce4a1e0047215aa0a0b30cc333bd32b866a8) | signal.h (574c4866e33d648520a8bd5bf6f573ea6e554e88) |
---|---|
1#ifndef _ASMAXP_SIGNAL_H 2#define _ASMAXP_SIGNAL_H 3 4#include <uapi/asm/signal.h> 5 6/* Digital Unix defines 64 signals. Most things should be clean enough 7 to redefine this at will, if care is taken to make libc match. */ 8 --- 8 unchanged lines hidden (view full) --- 17} sigset_t; 18 19struct osf_sigaction { 20 __sighandler_t sa_handler; 21 old_sigset_t sa_mask; 22 int sa_flags; 23}; 24 | 1#ifndef _ASMAXP_SIGNAL_H 2#define _ASMAXP_SIGNAL_H 3 4#include <uapi/asm/signal.h> 5 6/* Digital Unix defines 64 signals. Most things should be clean enough 7 to redefine this at will, if care is taken to make libc match. */ 8 --- 8 unchanged lines hidden (view full) --- 17} sigset_t; 18 19struct osf_sigaction { 20 __sighandler_t sa_handler; 21 old_sigset_t sa_mask; 22 int sa_flags; 23}; 24 |
25struct sigaction { 26 __sighandler_t sa_handler; 27 unsigned long sa_flags; 28 sigset_t sa_mask; /* mask last for extensibility */ 29}; 30 | |
31#define __ARCH_HAS_KA_RESTORER 32#include <asm/sigcontext.h> 33#endif | 25#define __ARCH_HAS_KA_RESTORER 26#include <asm/sigcontext.h> 27#endif |