blob: 599500a31025e0f3e6254ec334ca67d3da3a4a56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _ASM_SIGNAL_H
#define _ASM_SIGNAL_H
#include <uapi/asm/signal.h>
struct old_sigaction {
__sighandler_t sa_handler;
old_sigset_t sa_mask;
unsigned long sa_flags;
__sigrestore_t sa_restorer;
};
#endif /* _ASM_SIGNAL_H */
|