signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | signal.h (ae1f8d793a19a63263d6a30a311a2db4e86d8785) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASMARM_SIGNAL_H 3#define _ASMARM_SIGNAL_H 4 5#include <uapi/asm/signal.h> 6 7/* Most things should be clean enough to redefine this at will, if care 8 is taken to make libc match. */ --- 8 unchanged lines hidden (view full) --- 17 unsigned long sig[_NSIG_WORDS]; 18} sigset_t; 19 20#define __ARCH_UAPI_SA_FLAGS (SA_THIRTYTWO | SA_RESTORER) 21 22#define __ARCH_HAS_SA_RESTORER 23 24#include <asm/sigcontext.h> | 1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _ASMARM_SIGNAL_H 3#define _ASMARM_SIGNAL_H 4 5#include <uapi/asm/signal.h> 6 7/* Most things should be clean enough to redefine this at will, if care 8 is taken to make libc match. */ --- 8 unchanged lines hidden (view full) --- 17 unsigned long sig[_NSIG_WORDS]; 18} sigset_t; 19 20#define __ARCH_UAPI_SA_FLAGS (SA_THIRTYTWO | SA_RESTORER) 21 22#define __ARCH_HAS_SA_RESTORER 23 24#include <asm/sigcontext.h> |
25 26void do_rseq_syscall(struct pt_regs *regs); 27int do_work_pending(struct pt_regs *regs, unsigned int thread_flags, 28 int syscall); 29 |
|
25#endif | 30#endif |