Blame view

kernel/linux-rt-4.4.41/arch/frv/include/uapi/asm/signal.h 769 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  #ifndef _UAPI_ASM_SIGNAL_H
  #define _UAPI_ASM_SIGNAL_H
  
  #include <linux/types.h>
  
  #ifndef __KERNEL__
  /* Here we must cater to libcs that poke about in kernel headers.  */
  
  #define NSIG		32
  typedef unsigned long sigset_t;
  
  #endif /* !__KERNEL__ */
  
  #define SA_RESTORER	0x04000000 /* to get struct sigaction correct */
  
  #include <asm-generic/signal.h>
  
  #ifndef __KERNEL__
  /* Here we must cater to libcs that poke about in kernel headers.  */
  
  struct sigaction {
  	union {
  	  __sighandler_t _sa_handler;
  	  void (*_sa_sigaction)(int, struct siginfo *, void *);
  	} _u;
  	sigset_t sa_mask;
  	unsigned long sa_flags;
  	void (*sa_restorer)(void);
  };
  
  #define sa_handler	_u._sa_handler
  #define sa_sigaction	_u._sa_sigaction
  
  #endif /* __KERNEL__ */
  
  #endif /* _UAPI_ASM_SIGNAL_H */