File tree Expand file tree Collapse file tree 10 files changed +46
-0
lines changed Expand file tree Collapse file tree 10 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 176
176
BS1
177
177
BSDLY
178
178
BUFSIZ
179
+ BUS_ADRALN
180
+ BUS_ADRERR
181
+ BUS_OBJERR
182
+ BUS_MCEERR_AR
183
+ BUS_MCEERR_AO
179
184
CBAUD
180
185
CBAUDEX
181
186
CIBAUD
Original file line number Diff line number Diff line change 108
108
BS1
109
109
BSDLY
110
110
BUFSIZ
111
+ BUS_ADRALN
112
+ BUS_ADRERR
113
+ BUS_OBJERR
111
114
CCStatus
112
115
CCCryptorStatus
113
116
CCRandomGenerateBytes
Original file line number Diff line number Diff line change @@ -107,6 +107,9 @@ BOOT_TIME
107
107
BPF_ALIGNMENT
108
108
BTUARTDISC
109
109
BUFSIZ
110
+ BUS_ADRALN
111
+ BUS_ADRERR
112
+ BUS_OBJERR
110
113
CCAR_OFLOW
111
114
CCTS_OFLOW
112
115
CDSR_OFLOW
Original file line number Diff line number Diff line change @@ -133,6 +133,9 @@ BIOCVERSION
133
133
BOOT_TIME
134
134
BPF_ALIGNMENT
135
135
BUFSIZ
136
+ BUS_ADRALN
137
+ BUS_ADRERR
138
+ BUS_OBJERR
136
139
CCAR_OFLOW
137
140
CCTS_OFLOW
138
141
CDSR_OFLOW
Original file line number Diff line number Diff line change 198
198
BS1
199
199
BSDLY
200
200
BUFSIZ
201
+ BUS_ADRALN
202
+ BUS_ADRERR
203
+ BUS_OBJERR
204
+ BUS_MCEERR_AR
205
+ BUS_MCEERR_AO
201
206
CANFD_BRS
202
207
CANFD_ESI
203
208
CANFD_MAX_DLC
Original file line number Diff line number Diff line change @@ -123,6 +123,9 @@ BIOCSSEESENT
123
123
BIOCVERSION
124
124
BOOT_TIME
125
125
BUFSIZ
126
+ BUS_ADRALN
127
+ BUS_ADRERR
128
+ BUS_OBJERR
126
129
CCTS_OFLOW
127
130
CDTRCTS
128
131
CHWFLOW
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ BIOCSHDRCMPLT
86
86
BIOCSRSIG
87
87
BIOCVERSION
88
88
BUFSIZ
89
+ BUS_ADRALN
90
+ BUS_ADRERR
91
+ BUS_OBJERR
89
92
CCTS_OFLOW
90
93
CHWFLOW
91
94
CIGNORE
Original file line number Diff line number Diff line change @@ -449,6 +449,12 @@ pub const TCP_MAXSEG: ::c_int = 2;
449
449
450
450
pub const PIPE_BUF : usize = 512 ;
451
451
452
+ // si_code values for SIGBUS signal
453
+ pub const BUS_ADRALN : :: c_int = 1 ;
454
+ pub const BUS_ADRERR : :: c_int = 2 ;
455
+ pub const BUS_OBJERR : :: c_int = 3 ;
456
+
457
+ // si_code values for SIGCHLD signal
452
458
pub const CLD_EXITED : :: c_int = 1 ;
453
459
pub const CLD_KILLED : :: c_int = 2 ;
454
460
pub const CLD_DUMPED : :: c_int = 3 ;
Original file line number Diff line number Diff line change @@ -1243,6 +1243,12 @@ pub const WEXITED: ::c_int = 0x08;
1243
1243
pub const WSTOPPED : :: c_int = 0x10 ;
1244
1244
pub const WNOWAIT : :: c_int = 0x20 ;
1245
1245
1246
+ // si_code values for SIGBUS signal
1247
+ pub const BUS_ADRALN : :: c_int = 40 ;
1248
+ pub const BUS_ADRERR : :: c_int = 41 ;
1249
+ pub const BUS_OBJERR : :: c_int = 42 ;
1250
+
1251
+ // si_code values for SIGCHLD signal
1246
1252
pub const CLD_EXITED : :: c_int = 60 ;
1247
1253
pub const CLD_KILLED : :: c_int = 61 ;
1248
1254
pub const CLD_DUMPED : :: c_int = 62 ;
Original file line number Diff line number Diff line change @@ -1211,6 +1211,15 @@ pub const PIPE_BUF: usize = 4096;
1211
1211
1212
1212
pub const SI_LOAD_SHIFT : :: c_uint = 16 ;
1213
1213
1214
+ // si_code values for SIGBUS signal
1215
+ pub const BUS_ADRALN : :: c_int = 1 ;
1216
+ pub const BUS_ADRERR : :: c_int = 2 ;
1217
+ pub const BUS_OBJERR : :: c_int = 3 ;
1218
+ // Linux-specific si_code values for SIGBUS signal
1219
+ pub const BUS_MCEERR_AR : :: c_int = 4 ;
1220
+ pub const BUS_MCEERR_AO : :: c_int = 5 ;
1221
+
1222
+ // si_code values for SIGCHLD signal
1214
1223
pub const CLD_EXITED : :: c_int = 1 ;
1215
1224
pub const CLD_KILLED : :: c_int = 2 ;
1216
1225
pub const CLD_DUMPED : :: c_int = 3 ;
You can’t perform that action at this time.
0 commit comments