29 lines
625 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_SW64_SIGNAL_H
#define _ASM_SW64_SIGNAL_H
#include <uapi/asm/signal.h>
2026-01-29 22:25:33 +08:00
/* Digital Unix defines 64 signals. Most things should be clean enough
* to redefine this at will, if care is taken to make libc match.
*/
2026-01-21 18:59:54 +08:00
#define _NSIG 64
#define _NSIG_BPW 64
#define _NSIG_WORDS (_NSIG / _NSIG_BPW)
typedef unsigned long old_sigset_t; /* at least 32 bits */
typedef struct {
unsigned long sig[_NSIG_WORDS];
} sigset_t;
2026-01-29 22:25:33 +08:00
struct odd_sigaction {
__sighandler_t sa_handler;
old_sigset_t sa_mask;
int sa_flags;
};
2026-01-21 18:59:54 +08:00
#include <asm/sigcontext.h>
2026-01-29 22:25:33 +08:00
#endif /* _ASM_SW64_SIGNAL_H */