1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2 #ifndef _UAPI_M68K_SIGNAL_H
3 #define _UAPI_M68K_SIGNAL_H
5 #include <linux/types.h>
7 /* Avoid too many header ordering problems. */
11 /* Here we must cater to libcs that poke about in kernel headers. */
14 typedef unsigned long sigset_t
;
16 #endif /* __KERNEL__ */
56 /* These should not be considered constants from userland. */
58 #define SIGRTMAX _NSIG
60 #define MINSIGSTKSZ 2048
63 #include <asm-generic/signal-defs.h>
66 /* Here we must cater to libcs that poke about in kernel headers. */
70 __sighandler_t _sa_handler
;
71 void (*_sa_sigaction
)(int, struct siginfo
*, void *);
74 unsigned long sa_flags
;
75 void (*sa_restorer
)(void);
78 #define sa_handler _u._sa_handler
79 #define sa_sigaction _u._sa_sigaction
81 #endif /* __KERNEL__ */
83 typedef struct sigaltstack
{
89 #endif /* _UAPI_M68K_SIGNAL_H */