Skip to content

Commit 342db70

Browse files
committed
Auto merge of rust-lang#84200 - CDirkx:os, r=m-ou-se
Move all `sys::ext` modules to `os` This PR moves all `sys::ext` modules to `os`, centralizing the location of all `os` code and simplifying the dependencies between `os` and `sys`. Because this also removes all uses `cfg_if!` on publicly exported items, where after rust-lang#81969 there were still a few left, this should properly work around rust-lang/rust-analyzer#6038. `@rustbot` label: +T-libs-impl
2 parents 24acc38 + 2173d8d commit 342db70

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+162
-191
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

library/std/src/os/fortanix_sgx/mod.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This includes functions to deal with memory isolation, usercalls, and the
44
//! SGX instruction set.
55
6-
#![deny(missing_docs, missing_debug_implementations)]
6+
#![deny(missing_docs)]
77
#![unstable(feature = "sgx_platform", issue = "56975")]
88

99
/// Low-level interfaces to usercalls. See the [ABI documentation] for more
@@ -43,7 +43,9 @@ pub mod mem {
4343
pub use crate::sys::abi::mem::*;
4444
}
4545

46-
pub use crate::sys::ext::{arch, ffi, io};
46+
pub mod arch;
47+
pub mod ffi;
48+
pub mod io;
4749

4850
/// Functions for querying thread-related information.
4951
pub mod thread {
File renamed without changes.

library/std/src/sys/hermit/ext/mod.rs library/std/src/os/hermit/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![stable(feature = "rust1", since = "1.0.0")]
2-
#![allow(missing_docs)]
32

43
pub mod ffi;
54

library/std/src/os/linux/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! Linux-specific definitions.
22
33
#![stable(feature = "raw_ext", since = "1.1.0")]
4+
#![doc(cfg(target_os = "linux"))]
45

56
pub mod fs;
67
pub mod raw;

library/std/src/os/linux/raw.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
definitions"
1010
)]
1111
#![allow(deprecated)]
12-
#![allow(missing_debug_implementations)]
1312

1413
use crate::os::raw::c_ulong;
1514

library/std/src/os/mod.rs

+105-64
Original file line numberDiff line numberDiff line change
@@ -3,78 +3,119 @@
33
#![stable(feature = "os", since = "1.0.0")]
44
#![allow(missing_docs, nonstandard_style, missing_debug_implementations)]
55

6-
// When documenting libstd we want to show unix/windows/linux/wasi modules as these are the "main
7-
// modules" that are used across platforms, so all modules are enabled when `cfg(doc)` is set.
8-
// This should help show platform-specific functionality in a hopefully cross-platform way in the
9-
// documentation.
10-
// Note that we deliberately avoid `cfg_if!` here to work around a rust-analyzer bug that would make
11-
// `std::os` submodules unusable: https://github.com/rust-analyzer/rust-analyzer/issues/6038
6+
pub mod raw;
127

13-
#[cfg(doc)]
14-
#[stable(feature = "rust1", since = "1.0.0")]
15-
pub use crate::sys::unix_ext as unix;
8+
// The code below could be written clearer using `cfg_if!`. However, the items below are
9+
// publicly exported by `std` and external tools can have trouble analysing them because of the use
10+
// of a macro that is not vendored by Rust and included in the toolchain.
11+
// See https://github.com/rust-analyzer/rust-analyzer/issues/6038.
1612

17-
#[cfg(doc)]
18-
#[stable(feature = "rust1", since = "1.0.0")]
19-
pub use crate::sys::windows_ext as windows;
13+
#[cfg(all(
14+
doc,
15+
not(any(
16+
all(target_arch = "wasm32", not(target_os = "wasi")),
17+
all(target_vendor = "fortanix", target_env = "sgx")
18+
))
19+
))]
20+
#[path = "."]
21+
mod doc {
22+
// When documenting std we want to show the `unix`, `windows`, `linux` and `wasi`
23+
// modules as these are the "main modules" that are used across platforms,
24+
// so these modules are enabled when `cfg(doc)` is set.
25+
// This should help show platform-specific functionality in a hopefully cross-platform
26+
// way in the documentation.
2027

21-
#[cfg(doc)]
22-
#[doc(cfg(target_os = "linux"))]
23-
pub mod linux;
28+
pub mod unix;
2429

25-
#[cfg(doc)]
26-
#[stable(feature = "wasi_ext_doc", since = "1.35.0")]
27-
pub use crate::sys::wasi_ext as wasi;
30+
pub mod linux;
2831

29-
// If we're not documenting libstd then we just expose the main modules as we otherwise would.
32+
pub mod wasi;
3033

31-
#[cfg(not(doc))]
32-
#[cfg(any(unix, target_os = "hermit"))]
33-
#[stable(feature = "rust1", since = "1.0.0")]
34-
pub use crate::sys::ext as unix;
34+
pub mod windows;
35+
}
36+
#[cfg(all(
37+
doc,
38+
any(
39+
all(target_arch = "wasm32", not(target_os = "wasi")),
40+
all(target_vendor = "fortanix", target_env = "sgx")
41+
)
42+
))]
43+
mod doc {
44+
// On certain platforms right now the "main modules" modules that are
45+
// documented don't compile (missing things in `libc` which is empty),
46+
// so just omit them with an empty module.
3547

36-
#[cfg(not(doc))]
37-
#[cfg(windows)]
38-
#[stable(feature = "rust1", since = "1.0.0")]
39-
pub use crate::sys::ext as windows;
48+
#[unstable(issue = "none", feature = "std_internals")]
49+
pub mod unix {}
4050

41-
#[cfg(not(doc))]
42-
#[cfg(any(target_os = "linux", target_os = "l4re"))]
43-
pub mod linux;
51+
#[unstable(issue = "none", feature = "std_internals")]
52+
pub mod linux {}
53+
54+
#[unstable(issue = "none", feature = "std_internals")]
55+
pub mod wasi {}
56+
57+
#[unstable(issue = "none", feature = "std_internals")]
58+
pub mod windows {}
59+
}
60+
#[cfg(doc)]
61+
#[stable(feature = "os", since = "1.0.0")]
62+
pub use doc::*;
4463

4564
#[cfg(not(doc))]
46-
#[cfg(target_os = "wasi")]
47-
pub mod wasi;
48-
49-
#[cfg(target_os = "android")]
50-
pub mod android;
51-
#[cfg(target_os = "dragonfly")]
52-
pub mod dragonfly;
53-
#[cfg(target_os = "emscripten")]
54-
pub mod emscripten;
55-
#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
56-
pub mod fortanix_sgx;
57-
#[cfg(target_os = "freebsd")]
58-
pub mod freebsd;
59-
#[cfg(target_os = "fuchsia")]
60-
pub mod fuchsia;
61-
#[cfg(target_os = "haiku")]
62-
pub mod haiku;
63-
#[cfg(target_os = "illumos")]
64-
pub mod illumos;
65-
#[cfg(target_os = "ios")]
66-
pub mod ios;
67-
#[cfg(target_os = "macos")]
68-
pub mod macos;
69-
#[cfg(target_os = "netbsd")]
70-
pub mod netbsd;
71-
#[cfg(target_os = "openbsd")]
72-
pub mod openbsd;
73-
#[cfg(target_os = "redox")]
74-
pub mod redox;
75-
#[cfg(target_os = "solaris")]
76-
pub mod solaris;
77-
#[cfg(target_os = "vxworks")]
78-
pub mod vxworks;
65+
#[path = "."]
66+
mod imp {
67+
// If we're not documenting std then we only expose modules appropriate for the
68+
// current platform.
7969

80-
pub mod raw;
70+
#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
71+
pub mod fortanix_sgx;
72+
73+
#[cfg(target_os = "hermit")]
74+
#[path = "hermit/mod.rs"]
75+
pub mod unix;
76+
77+
#[cfg(target_os = "android")]
78+
pub mod android;
79+
#[cfg(target_os = "dragonfly")]
80+
pub mod dragonfly;
81+
#[cfg(target_os = "emscripten")]
82+
pub mod emscripten;
83+
#[cfg(target_os = "freebsd")]
84+
pub mod freebsd;
85+
#[cfg(target_os = "fuchsia")]
86+
pub mod fuchsia;
87+
#[cfg(target_os = "haiku")]
88+
pub mod haiku;
89+
#[cfg(target_os = "illumos")]
90+
pub mod illumos;
91+
#[cfg(target_os = "ios")]
92+
pub mod ios;
93+
#[cfg(target_os = "l4re")]
94+
pub mod linux;
95+
#[cfg(target_os = "linux")]
96+
pub mod linux;
97+
#[cfg(target_os = "macos")]
98+
pub mod macos;
99+
#[cfg(target_os = "netbsd")]
100+
pub mod netbsd;
101+
#[cfg(target_os = "openbsd")]
102+
pub mod openbsd;
103+
#[cfg(target_os = "redox")]
104+
pub mod redox;
105+
#[cfg(target_os = "solaris")]
106+
pub mod solaris;
107+
#[cfg(unix)]
108+
pub mod unix;
109+
110+
#[cfg(target_os = "vxworks")]
111+
pub mod vxworks;
112+
113+
#[cfg(target_os = "wasi")]
114+
pub mod wasi;
115+
116+
#[cfg(windows)]
117+
pub mod windows;
118+
}
119+
#[cfg(not(doc))]
120+
#[stable(feature = "os", since = "1.0.0")]
121+
pub use imp::*;

library/std/src/os/redox/raw.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
definitions"
1010
)]
1111
#![allow(deprecated)]
12-
#![allow(missing_debug_implementations)]
1312

1413
use crate::os::raw::{c_char, c_int, c_long, c_ulong, c_void};
1514

File renamed without changes.
File renamed without changes.
File renamed without changes.

library/std/src/sys/unix/ext/mod.rs library/std/src/os/unix/mod.rs

+36-37
Original file line numberDiff line numberDiff line change
@@ -27,44 +27,43 @@
2727
2828
#![stable(feature = "rust1", since = "1.0.0")]
2929
#![doc(cfg(unix))]
30-
#![allow(missing_docs)]
3130

32-
cfg_if::cfg_if! {
33-
if #[cfg(doc)] {
34-
// Use linux as the default platform when documenting on other platforms like Windows
35-
use crate::os::linux as platform;
36-
} else {
37-
#[cfg(target_os = "android")]
38-
use crate::os::android as platform;
39-
#[cfg(target_os = "dragonfly")]
40-
use crate::os::dragonfly as platform;
41-
#[cfg(target_os = "emscripten")]
42-
use crate::os::emscripten as platform;
43-
#[cfg(target_os = "freebsd")]
44-
use crate::os::freebsd as platform;
45-
#[cfg(target_os = "fuchsia")]
46-
use crate::os::fuchsia as platform;
47-
#[cfg(target_os = "haiku")]
48-
use crate::os::haiku as platform;
49-
#[cfg(target_os = "illumos")]
50-
use crate::os::illumos as platform;
51-
#[cfg(target_os = "ios")]
52-
use crate::os::ios as platform;
53-
#[cfg(any(target_os = "linux", target_os = "l4re"))]
54-
use crate::os::linux as platform;
55-
#[cfg(target_os = "macos")]
56-
use crate::os::macos as platform;
57-
#[cfg(target_os = "netbsd")]
58-
use crate::os::netbsd as platform;
59-
#[cfg(target_os = "openbsd")]
60-
use crate::os::openbsd as platform;
61-
#[cfg(target_os = "redox")]
62-
use crate::os::redox as platform;
63-
#[cfg(target_os = "solaris")]
64-
use crate::os::solaris as platform;
65-
#[cfg(target_os = "vxworks")]
66-
use crate::os::vxworks as platform;
67-
}
31+
// Use linux as the default platform when documenting on other platforms like Windows
32+
#[cfg(doc)]
33+
use crate::os::linux as platform;
34+
35+
#[cfg(not(doc))]
36+
mod platform {
37+
#[cfg(target_os = "android")]
38+
pub use crate::os::android::*;
39+
#[cfg(target_os = "dragonfly")]
40+
pub use crate::os::dragonfly::*;
41+
#[cfg(target_os = "emscripten")]
42+
pub use crate::os::emscripten::*;
43+
#[cfg(target_os = "freebsd")]
44+
pub use crate::os::freebsd::*;
45+
#[cfg(target_os = "fuchsia")]
46+
pub use crate::os::fuchsia::*;
47+
#[cfg(target_os = "haiku")]
48+
pub use crate::os::haiku::*;
49+
#[cfg(target_os = "illumos")]
50+
pub use crate::os::illumos::*;
51+
#[cfg(target_os = "ios")]
52+
pub use crate::os::ios::*;
53+
#[cfg(any(target_os = "linux", target_os = "l4re"))]
54+
pub use crate::os::linux::*;
55+
#[cfg(target_os = "macos")]
56+
pub use crate::os::macos::*;
57+
#[cfg(target_os = "netbsd")]
58+
pub use crate::os::netbsd::*;
59+
#[cfg(target_os = "openbsd")]
60+
pub use crate::os::openbsd::*;
61+
#[cfg(target_os = "redox")]
62+
pub use crate::os::redox::*;
63+
#[cfg(target_os = "solaris")]
64+
pub use crate::os::solaris::*;
65+
#[cfg(target_os = "vxworks")]
66+
pub use crate::os::vxworks::*;
6867
}
6968

7069
pub mod ffi;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

library/std/src/os/wasi.rs

-6
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

library/std/src/sys/wasi/ext/mod.rs library/std/src/os/wasi/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
//! }
2626
//! ```
2727
28+
#![stable(feature = "rust1", since = "1.0.0")]
2829
#![deny(unsafe_op_in_unsafe_fn)]
2930
#![doc(cfg(target_os = "wasi"))]
3031

File renamed without changes.
File renamed without changes.
File renamed without changes.

library/std/src/sys/windows/ext/mod.rs library/std/src/os/windows/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
99
#![stable(feature = "rust1", since = "1.0.0")]
1010
#![doc(cfg(windows))]
11-
#![allow(missing_docs)]
1211

1312
pub mod ffi;
1413
pub mod fs;
File renamed without changes.
File renamed without changes.

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

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ pub mod args;
2424
pub mod cmath;
2525
pub mod condvar;
2626
pub mod env;
27-
pub mod ext;
2827
pub mod fd;
2928
pub mod fs;
3029
#[path = "../unsupported/io.rs"]

0 commit comments

Comments
 (0)