Skip to content

Commit 004cd45

Browse files
committed
Move pipe into sys
1 parent ec38671 commit 004cd45

File tree

19 files changed

+22
-26
lines changed

19 files changed

+22
-26
lines changed

library/std/src/sys/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub mod io;
2626
pub mod net;
2727
pub mod os_str;
2828
pub mod path;
29+
pub mod pipe;
2930
pub mod platform_version;
3031
pub mod process;
3132
pub mod random;

library/std/src/sys/pal/hermit/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ use crate::sys::env;
2323

2424
pub mod futex;
2525
pub mod os;
26-
#[path = "../unsupported/pipe.rs"]
27-
pub mod pipe;
2826
pub mod time;
2927

3028
pub fn unsupported<T>() -> crate::io::Result<T> {

library/std/src/sys/pal/sgx/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use crate::sync::atomic::{Atomic, AtomicBool, Ordering};
1111
pub mod abi;
1212
mod libunwind_integration;
1313
pub mod os;
14-
#[path = "../unsupported/pipe.rs"]
15-
pub mod pipe;
1614
pub mod thread_parking;
1715
pub mod time;
1816
pub mod waitqueue;

library/std/src/sys/pal/solid/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ pub mod itron {
1818
// `crate::sys::error`
1919
pub(crate) mod error;
2020
pub mod os;
21-
#[path = "../unsupported/pipe.rs"]
22-
pub mod pipe;
2321
pub use self::itron::thread_parking;
2422
pub mod time;
2523

library/std/src/sys/pal/teeos/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
#![allow(dead_code)]
88

99
pub mod os;
10-
#[path = "../unsupported/pipe.rs"]
11-
pub mod pipe;
1210
#[allow(non_upper_case_globals)]
1311
#[path = "../unix/time.rs"]
1412
pub mod time;

library/std/src/sys/pal/trusty/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
mod common;
66
#[path = "../unsupported/os.rs"]
77
pub mod os;
8-
#[path = "../unsupported/pipe.rs"]
9-
pub mod pipe;
108
#[path = "../unsupported/thread.rs"]
119
pub mod thread;
1210
#[path = "../unsupported/time.rs"]

library/std/src/sys/pal/uefi/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515

1616
pub mod helpers;
1717
pub mod os;
18-
#[path = "../unsupported/pipe.rs"]
19-
pub mod pipe;
2018
pub mod time;
2119

2220
#[cfg(test)]

library/std/src/sys/pal/unix/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ pub mod kernel_copy;
1414
#[cfg(target_os = "linux")]
1515
pub mod linux;
1616
pub mod os;
17-
pub mod pipe;
1817
pub mod stack_overflow;
1918
pub mod sync;
2019
pub mod thread_parking;

library/std/src/sys/pal/unsupported/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![deny(unsafe_op_in_unsafe_fn)]
22

33
pub mod os;
4-
pub mod pipe;
54
pub mod thread;
65
pub mod time;
76

library/std/src/sys/pal/wasip1/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
pub mod futex;
1919

2020
pub mod os;
21-
#[path = "../unsupported/pipe.rs"]
22-
pub mod pipe;
2321
pub mod time;
2422

2523
#[path = "../unsupported/common.rs"]

0 commit comments

Comments
 (0)