1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef __ASM_SH_SIGNAL_H
3#define __ASM_SH_SIGNAL_H
4
5#define SA_RESTORER	0x04000000
6
7#include <asm-generic/signal.h>
8
9#ifndef __KERNEL__
10struct old_sigaction {
11	__sighandler_t sa_handler;
12	old_sigset_t sa_mask;
13	unsigned long sa_flags;
14	void (*sa_restorer)(void);
15};
16#endif
17
18#endif /* __ASM_SH_SIGNAL_H */
19