2005-04-16 15:20:36 -07:00
|
|
|
#ifndef _ASM_SIGNAL_H
|
|
|
|
|
#define _ASM_SIGNAL_H
|
|
|
|
|
|
2012-10-10 12:09:42 +01:00
|
|
|
#include <uapi/asm/signal.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
struct old_sigaction {
|
|
|
|
|
__sighandler_t sa_handler;
|
|
|
|
|
old_sigset_t sa_mask;
|
|
|
|
|
unsigned long sa_flags;
|
2006-06-23 02:04:04 -07:00
|
|
|
__sigrestore_t sa_restorer;
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* _ASM_SIGNAL_H */
|