File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -162,13 +162,13 @@ s! {
162
162
}
163
163
164
164
// These constants must be of the same type of sigaction.sa_flags
165
- pub const SA_NOCLDSTOP : :: c_ulong = 0x00000001 ;
166
- pub const SA_NOCLDWAIT : :: c_ulong = 0x00000002 ;
167
- pub const SA_NODEFER : :: c_ulong = 0x40000000 ;
168
- pub const SA_ONSTACK : :: c_ulong = 0x08000000 ;
169
- pub const SA_RESETHAND : :: c_ulong = 0x80000000 ;
170
- pub const SA_RESTART : :: c_ulong = 0x10000000 ;
171
- pub const SA_SIGINFO : :: c_ulong = 0x00000004 ;
165
+ pub const SA_NOCLDSTOP : :: c_int = 0x00000001 ;
166
+ pub const SA_NOCLDWAIT : :: c_int = 0x00000002 ;
167
+ pub const SA_NODEFER : :: c_int = 0x40000000 ;
168
+ pub const SA_ONSTACK : :: c_int = 0x08000000 ;
169
+ pub const SA_RESETHAND : :: c_int = 0x80000000 ;
170
+ pub const SA_RESTART : :: c_int = 0x10000000 ;
171
+ pub const SA_SIGINFO : :: c_int = 0x00000004 ;
172
172
173
173
pub const RTLD_GLOBAL : :: c_int = 2 ;
174
174
pub const RTLD_NOW : :: c_int = 0 ;
Original file line number Diff line number Diff line change @@ -232,13 +232,13 @@ cfg_if! {
232
232
}
233
233
234
234
// These constants must be of the same type of sigaction.sa_flags
235
- pub const SA_NOCLDSTOP : :: c_uint = 0x00000001 ;
236
- pub const SA_NOCLDWAIT : :: c_uint = 0x00000002 ;
237
- pub const SA_NODEFER : :: c_uint = 0x40000000 ;
238
- pub const SA_ONSTACK : :: c_uint = 0x08000000 ;
239
- pub const SA_RESETHAND : :: c_uint = 0x80000000 ;
240
- pub const SA_RESTART : :: c_uint = 0x10000000 ;
241
- pub const SA_SIGINFO : :: c_uint = 0x00000004 ;
235
+ pub const SA_NOCLDSTOP : :: c_int = 0x00000001 ;
236
+ pub const SA_NOCLDWAIT : :: c_int = 0x00000002 ;
237
+ pub const SA_NODEFER : :: c_int = 0x40000000 ;
238
+ pub const SA_ONSTACK : :: c_int = 0x08000000 ;
239
+ pub const SA_RESETHAND : :: c_int = 0x80000000 ;
240
+ pub const SA_RESTART : :: c_int = 0x10000000 ;
241
+ pub const SA_SIGINFO : :: c_int = 0x00000004 ;
242
242
243
243
pub const RTLD_GLOBAL : :: c_int = 0x00100 ;
244
244
pub const RTLD_NOW : :: c_int = 2 ;
You can’t perform that action at this time.
0 commit comments