File tree 1 file changed +3
-8
lines changed
library/std/src/sys/pal/unix
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ impl Drop for Handler {
32
32
target_os = "macos" ,
33
33
target_os = "netbsd" ,
34
34
target_os = "openbsd" ,
35
- target_os = "cygwin" ,
36
35
target_os = "solaris" ,
37
36
target_os = "illumos" ,
38
37
) ) ]
@@ -316,8 +315,7 @@ mod imp {
316
315
target_os = "netbsd" ,
317
316
target_os = "hurd" ,
318
317
target_os = "linux" ,
319
- target_os = "l4re" ,
320
- target_os = "cygwin"
318
+ target_os = "l4re"
321
319
) ) ]
322
320
unsafe fn get_stack_start ( ) -> Option < * mut libc:: c_void > {
323
321
let mut ret = None ;
@@ -372,8 +370,7 @@ mod imp {
372
370
// this way someone on any unix-y OS can check that all these compile
373
371
if cfg ! ( all( target_os = "linux" , not( target_env = "musl" ) ) ) {
374
372
install_main_guard_linux ( page_size)
375
- } else if cfg ! ( any( all( target_os = "linux" , target_env = "musl" ) , target_os = "cygwin" ) )
376
- {
373
+ } else if cfg ! ( all( target_os = "linux" , target_env = "musl" ) ) {
377
374
install_main_guard_linux_musl ( page_size)
378
375
} else if cfg ! ( target_os = "freebsd" ) {
379
376
install_main_guard_freebsd ( page_size)
@@ -513,8 +510,7 @@ mod imp {
513
510
target_os = "hurd" ,
514
511
target_os = "linux" ,
515
512
target_os = "netbsd" ,
516
- target_os = "l4re" ,
517
- target_os = "cygwin"
513
+ target_os = "l4re"
518
514
) ) ]
519
515
// FIXME: I am probably not unsafe.
520
516
unsafe fn current_guard ( ) -> Option < Range < usize > > {
@@ -587,7 +583,6 @@ mod imp {
587
583
target_os = "macos" ,
588
584
target_os = "netbsd" ,
589
585
target_os = "openbsd" ,
590
- target_os = "cygwin" ,
591
586
target_os = "solaris" ,
592
587
target_os = "illumos" ,
593
588
) ) ) ]
You can’t perform that action at this time.
0 commit comments