M7350/kernel/arch/sh/include/uapi/asm/signal.h

18 lines
306 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef __ASM_SH_SIGNAL_H
#define __ASM_SH_SIGNAL_H
#define SA_RESTORER 0x04000000
#include <asm-generic/signal.h>
2024-09-09 08:57:42 +00:00
#ifndef __KERNEL__
2024-09-09 08:52:07 +00:00
struct old_sigaction {
__sighandler_t sa_handler;
old_sigset_t sa_mask;
unsigned long sa_flags;
void (*sa_restorer)(void);
};
2024-09-09 08:57:42 +00:00
#endif
2024-09-09 08:52:07 +00:00
#endif /* __ASM_SH_SIGNAL_H */