signal.h (92a3ce4a1e0047215aa0a0b30cc333bd32b866a8) signal.h (574c4866e33d648520a8bd5bf6f573ea6e554e88)
1#ifndef _M68K_SIGNAL_H
2#define _M68K_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 unchanged lines hidden (view full) ---

18
19struct old_sigaction {
20 __sighandler_t sa_handler;
21 old_sigset_t sa_mask;
22 unsigned long sa_flags;
23 __sigrestore_t sa_restorer;
24};
25
1#ifndef _M68K_SIGNAL_H
2#define _M68K_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 unchanged lines hidden (view full) ---

18
19struct old_sigaction {
20 __sighandler_t sa_handler;
21 old_sigset_t sa_mask;
22 unsigned long sa_flags;
23 __sigrestore_t sa_restorer;
24};
25
26struct sigaction {
27 __sighandler_t sa_handler;
28 unsigned long sa_flags;
29 __sigrestore_t sa_restorer;
30 sigset_t sa_mask; /* mask last for extensibility */
31};
26#define __ARCH_HAS_SA_RESTORER
32
33#include <asm/sigcontext.h>
34
35#ifndef CONFIG_CPU_HAS_NO_BITFIELDS
36#define __HAVE_ARCH_SIG_BITOPS
37
38static inline void sigaddset(sigset_t *set, int _sig)
39{

--- 52 unchanged lines hidden ---
27
28#include <asm/sigcontext.h>
29
30#ifndef CONFIG_CPU_HAS_NO_BITFIELDS
31#define __HAVE_ARCH_SIG_BITOPS
32
33static inline void sigaddset(sigset_t *set, int _sig)
34{

--- 52 unchanged lines hidden ---