scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 13fabd7c1b99fc97c8fe9cfb58f4e898eb8599f9
parent 82ea1289e2b1c663ec893ccf26ee48da023374d6
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 13 Mar 2024 09:40:18 +0100

libc/arm64: Add include/bits/linux/arm64/arch/sigaction.h

Diffstat:
Ainclude/bits/linux/arm64/arch/sigaction.h | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/include/bits/linux/arm64/arch/sigaction.h b/include/bits/linux/arm64/arch/sigaction.h @@ -0,0 +1,10 @@ +#define SA_RESTORER 0x04000000 + +struct sigaction { + void (*sa_handler)(int); + unsigned long sa_flags; + void (*sa_restorer)(void); + unsigned sa_mask[2]; +}; + +extern int __sigaction(int, struct sigaction *, struct sigaction *, size_t);