File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed
branches/release-prep/src/libnative/io Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
29
29
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
30
30
refs/heads/libuv-update-temp-branch: 6ed22c618766f1f2a2e108eef8ce3f51be0f70b7
31
31
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
32
- refs/heads/release-prep: c586490715a35d3c9dae17de7f8907c2f73168d3
32
+ refs/heads/release-prep: 67d83f3bfc94298ebd7ffd65eefd9eeec884fd9c
Original file line number Diff line number Diff line change @@ -232,11 +232,9 @@ mod signal {
232
232
pub static SA_SIGINFO : libc:: c_int = 0x0040 ;
233
233
pub static SIGCHLD : libc:: c_int = 20 ;
234
234
235
- #[ cfg( target_os = "macos" ) ]
236
- #[ cfg( target_os = "ios" ) ]
235
+ #[ cfg( any( target_os = "macos" , target_os = "ios" ) ) ]
237
236
pub type sigset_t = u32 ;
238
- #[ cfg( target_os = "freebsd" ) ]
239
- #[ cfg( target_os = "dragonfly" ) ]
237
+ #[ cfg( any( target_os = "freebsd" , target_os = "dragonfly" ) ) ]
240
238
#[ repr( C ) ]
241
239
pub struct sigset_t {
242
240
bits : [ u32 , ..4 ] ,
@@ -254,8 +252,7 @@ mod signal {
254
252
pub status : libc:: c_int ,
255
253
}
256
254
257
- #[ cfg( target_os = "macos" ) ]
258
- #[ cfg( target_os = "ios" ) ]
255
+ #[ cfg( any( target_os = "macos" , target_os = "ios" ) ) ]
259
256
#[ repr( C ) ]
260
257
pub struct sigaction {
261
258
pub sa_handler : extern fn ( libc:: c_int ) ,
@@ -264,8 +261,7 @@ mod signal {
264
261
pub sa_flags : libc:: c_int ,
265
262
}
266
263
267
- #[ cfg( target_os = "freebsd" ) ]
268
- #[ cfg( target_os = "dragonfly" ) ]
264
+ #[ cfg( any( target_os = "freebsd" , target_os = "dragonfly" ) ) ]
269
265
#[ repr( C ) ]
270
266
pub struct sigaction {
271
267
pub sa_handler : extern fn ( libc:: c_int ) ,
You can’t perform that action at this time.
0 commit comments