FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/src/api/utils.cc at main · fetchapi/node · GitHub
fetchapi
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
1
Star
0
Code
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
src
/
api
/
utils.cc
Copy path
More file actions
More file actions
Latest commit
History
History
History
169 lines (129 loc) · 2.16 KB
Breadcrumbs
node
/
src
/
api
/
utils.cc
Copy path
File metadata and controls
169 lines (129 loc) · 2.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#
include
"
node.h
"
#
include
<
csignal
>
namespace
node
{
const
char
*
signo_string
(
int
signo) {
#
define
SIGNO_CASE
(
e
) \
case
e: \
return
#e;
switch
(signo) {
#
ifdef
SIGHUP
SIGNO_CASE
(
SIGHUP
);
#
endif
#
ifdef
SIGINT
SIGNO_CASE
(
SIGINT
);
#
endif
#
ifdef
SIGQUIT
SIGNO_CASE
(
SIGQUIT
);
#
endif
#
ifdef
SIGILL
SIGNO_CASE
(
SIGILL
);
#
endif
#
ifdef
SIGTRAP
SIGNO_CASE
(
SIGTRAP
);
#
endif
#
ifdef
SIGABRT
SIGNO_CASE
(
SIGABRT
);
#
endif
#
ifdef
SIGIOT
#
if
SIGABRT != SIGIOT
SIGNO_CASE
(
SIGIOT
);
#
endif
#
endif
#
ifdef
SIGBUS
SIGNO_CASE
(
SIGBUS
);
#
endif
#
ifdef
SIGFPE
SIGNO_CASE
(
SIGFPE
);
#
endif
#
ifdef
SIGKILL
SIGNO_CASE
(
SIGKILL
);
#
endif
#
ifdef
SIGUSR1
SIGNO_CASE
(
SIGUSR1
);
#
endif
#
ifdef
SIGSEGV
SIGNO_CASE
(
SIGSEGV
);
#
endif
#
ifdef
SIGUSR2
SIGNO_CASE
(
SIGUSR2
);
#
endif
#
ifdef
SIGPIPE
SIGNO_CASE
(
SIGPIPE
);
#
endif
#
ifdef
SIGALRM
SIGNO_CASE
(
SIGALRM
);
#
endif
SIGNO_CASE
(
SIGTERM
);
#
ifdef
SIGCHLD
SIGNO_CASE
(
SIGCHLD
);
#
endif
#
ifdef
SIGSTKFLT
SIGNO_CASE
(
SIGSTKFLT
);
#
endif
#
ifdef
SIGCONT
SIGNO_CASE
(
SIGCONT
);
#
endif
#
ifdef
SIGSTOP
SIGNO_CASE
(
SIGSTOP
);
#
endif
#
ifdef
SIGTSTP
SIGNO_CASE
(
SIGTSTP
);
#
endif
#
ifdef
SIGBREAK
SIGNO_CASE
(
SIGBREAK
);
#
endif
#
ifdef
SIGTTIN
SIGNO_CASE
(
SIGTTIN
);
#
endif
#
ifdef
SIGTTOU
SIGNO_CASE
(
SIGTTOU
);
#
endif
#
ifdef
SIGURG
SIGNO_CASE
(
SIGURG
);
#
endif
#
ifdef
SIGXCPU
SIGNO_CASE
(
SIGXCPU
);
#
endif
#
ifdef
SIGXFSZ
SIGNO_CASE
(
SIGXFSZ
);
#
endif
#
ifdef
SIGVTALRM
SIGNO_CASE
(
SIGVTALRM
);
#
endif
#
ifdef
SIGPROF
SIGNO_CASE
(
SIGPROF
);
#
endif
#
ifdef
SIGWINCH
SIGNO_CASE
(
SIGWINCH
);
#
endif
#
ifdef
SIGIO
SIGNO_CASE
(
SIGIO
);
#
endif
#
ifdef
SIGPOLL
#
if
SIGPOLL != SIGIO
SIGNO_CASE
(
SIGPOLL
);
#
endif
#
endif
#
ifdef
SIGLOST
#
if
SIGLOST != SIGABRT
SIGNO_CASE
(
SIGLOST
);
#
endif
#
endif
#
ifdef
SIGPWR
#
if
SIGPWR != SIGLOST
SIGNO_CASE
(
SIGPWR
);
#
endif
#
endif
#
ifdef
SIGINFO
#
if
!defined(SIGPWR) || SIGINFO != SIGPWR
SIGNO_CASE
(
SIGINFO
);
#
endif
#
endif
#
ifdef
SIGSYS
SIGNO_CASE
(
SIGSYS
);
#
endif
default
:
return
"
"
;
}
}
}
//
namespace node
Back
|
FazBrowse Home
|
New Git URL