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 176176BS1
177177BSDLY
178178BUFSIZ
179+ BUS_ADRALN
180+ BUS_ADRERR
181+ BUS_OBJERR
182+ BUS_MCEERR_AR
183+ BUS_MCEERR_AO
179184CBAUD
180185CBAUDEX
181186CIBAUD
Original file line number Diff line number Diff line change 108108BS1
109109BSDLY
110110BUFSIZ
111+ BUS_ADRALN
112+ BUS_ADRERR
113+ BUS_OBJERR
111114CCStatus
112115CCCryptorStatus
113116CCRandomGenerateBytes
Original file line number Diff line number Diff line change @@ -107,6 +107,9 @@ BOOT_TIME
107107BPF_ALIGNMENT
108108BTUARTDISC
109109BUFSIZ
110+ BUS_ADRALN
111+ BUS_ADRERR
112+ BUS_OBJERR
110113CCAR_OFLOW
111114CCTS_OFLOW
112115CDSR_OFLOW
Original file line number Diff line number Diff line change @@ -133,6 +133,9 @@ BIOCVERSION
133133BOOT_TIME
134134BPF_ALIGNMENT
135135BUFSIZ
136+ BUS_ADRALN
137+ BUS_ADRERR
138+ BUS_OBJERR
136139CCAR_OFLOW
137140CCTS_OFLOW
138141CDSR_OFLOW
Original file line number Diff line number Diff line change 198198BS1
199199BSDLY
200200BUFSIZ
201+ BUS_ADRALN
202+ BUS_ADRERR
203+ BUS_OBJERR
204+ BUS_MCEERR_AR
205+ BUS_MCEERR_AO
201206CANFD_BRS
202207CANFD_ESI
203208CANFD_MAX_DLC
Original file line number Diff line number Diff line change @@ -123,6 +123,9 @@ BIOCSSEESENT
123123BIOCVERSION
124124BOOT_TIME
125125BUFSIZ
126+ BUS_ADRALN
127+ BUS_ADRERR
128+ BUS_OBJERR
126129CCTS_OFLOW
127130CDTRCTS
128131CHWFLOW
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ BIOCSHDRCMPLT
8686BIOCSRSIG
8787BIOCVERSION
8888BUFSIZ
89+ BUS_ADRALN
90+ BUS_ADRERR
91+ BUS_OBJERR
8992CCTS_OFLOW
9093CHWFLOW
9194CIGNORE
Original file line number Diff line number Diff line change @@ -449,6 +449,12 @@ pub const TCP_MAXSEG: ::c_int = 2;
449449
450450pub const PIPE_BUF : usize = 512 ;
451451
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
452458pub const CLD_EXITED : :: c_int = 1 ;
453459pub const CLD_KILLED : :: c_int = 2 ;
454460pub 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;
12431243pub const WSTOPPED : :: c_int = 0x10 ;
12441244pub const WNOWAIT : :: c_int = 0x20 ;
12451245
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
12461252pub const CLD_EXITED : :: c_int = 60 ;
12471253pub const CLD_KILLED : :: c_int = 61 ;
12481254pub 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;
12111211
12121212pub const SI_LOAD_SHIFT : :: c_uint = 16 ;
12131213
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
12141223pub const CLD_EXITED : :: c_int = 1 ;
12151224pub const CLD_KILLED : :: c_int = 2 ;
12161225pub const CLD_DUMPED : :: c_int = 3 ;
You can’t perform that action at this time.
0 commit comments