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 v3.12 24 lines 512 B view raw
1#ifndef _H8300_SIGNAL_H 2#define _H8300_SIGNAL_H 3 4#include <uapi/asm/signal.h> 5 6/* Most things should be clean enough to redefine this at will, if care 7 is taken to make libc match. */ 8 9#define _NSIG 64 10#define _NSIG_BPW 32 11#define _NSIG_WORDS (_NSIG / _NSIG_BPW) 12 13typedef unsigned long old_sigset_t; /* at least 32 bits */ 14 15typedef struct { 16 unsigned long sig[_NSIG_WORDS]; 17} sigset_t; 18 19#define __ARCH_HAS_SA_RESTORER 20 21#include <asm/sigcontext.h> 22#undef __HAVE_ARCH_SIG_BITOPS 23 24#endif /* _H8300_SIGNAL_H */