hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _UAPI_ASM_PARISC_SIGNAL_H
#define _UAPI_ASM_PARISC_SIGNAL_H
 
#define SIGHUP         1
#define SIGINT         2
#define SIGQUIT         3
#define SIGILL         4
#define SIGTRAP         5
#define SIGABRT         6
#define SIGIOT         6
#define SIGSTKFLT     7
#define SIGFPE         8
#define SIGKILL         9
#define SIGBUS        10
#define SIGSEGV        11
#define SIGXCPU        12
#define SIGPIPE        13
#define SIGALRM        14
#define SIGTERM        15
#define SIGUSR1        16
#define SIGUSR2        17
#define SIGCHLD        18
#define SIGPWR        19
#define SIGVTALRM    20
#define SIGPROF        21
#define SIGIO        22
#define SIGPOLL        SIGIO
#define SIGWINCH    23
#define SIGSTOP        24
#define SIGTSTP        25
#define SIGCONT        26
#define SIGTTIN        27
#define SIGTTOU        28
#define SIGURG        29
#define SIGXFSZ        30
#define SIGUNUSED    31
#define SIGSYS        31
 
/* These should not be considered constants from userland.  */
#define SIGRTMIN    32
#define SIGRTMAX    _NSIG
 
#define SA_ONSTACK    0x00000001
#define SA_RESETHAND    0x00000004
#define SA_NOCLDSTOP    0x00000008
#define SA_SIGINFO    0x00000010
#define SA_NODEFER    0x00000020
#define SA_RESTART    0x00000040
#define SA_NOCLDWAIT    0x00000080
 
#define SA_NOMASK    SA_NODEFER
#define SA_ONESHOT    SA_RESETHAND
 
#define MINSIGSTKSZ    2048
#define SIGSTKSZ    8192
 
#include <asm-generic/signal-defs.h>
 
# ifndef __ASSEMBLY__
 
#  include <linux/types.h>
 
/* Avoid too many header ordering problems.  */
struct siginfo;
 
typedef struct sigaltstack {
   void __user *ss_sp;
   int ss_flags;
   size_t ss_size;
} stack_t;
 
#endif /* !__ASSEMBLY */
#endif /* _UAPI_ASM_PARISC_SIGNAL_H */