Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.7-rc5 18 lines 369 B view raw
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 */