Skip to content

Commit ce43fdd

Browse files
authored
Minior code cleanups (#1276)
* Documentation cleanups. * Fix compilaion with different configurations.
1 parent 2cc2fd4 commit ce43fdd

File tree

18 files changed

+56
-40
lines changed

18 files changed

+56
-40
lines changed

examples/stdio.rs

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
use rustix::termios::isatty;
77
#[cfg(all(
88
not(any(windows, target_os = "fuchsia")),
9+
feature = "fs",
910
feature = "termios",
1011
feature = "alloc"
1112
))]
@@ -62,6 +63,7 @@ fn show<Fd: AsFd>(fd: Fd) -> io::Result<()> {
6263
#[cfg(feature = "termios")]
6364
if isatty(fd) {
6465
#[cfg(feature = "alloc")]
66+
#[cfg(feature = "fs")]
6567
#[cfg(not(target_os = "fuchsia"))]
6668
println!(" - ttyname: {}", ttyname(fd, Vec::new())?.to_string_lossy());
6769

src/backend/linux_raw/c.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ pub(crate) use linux_raw_sys::general::epoll_event;
3030
not(feature = "use-explicitly-provided-auxv"),
3131
any(
3232
feature = "param",
33-
feature = "process",
3433
feature = "runtime",
34+
feature = "thread",
3535
feature = "time",
3636
target_arch = "x86",
3737
)

src/backend/linux_raw/conv.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ pub(super) fn socklen_t<'a, Num: ArgNumber>(i: socklen_t) -> ArgReg<'a, Num> {
303303
not(feature = "use-explicitly-provided-auxv"),
304304
any(
305305
feature = "param",
306-
feature = "process",
307306
feature = "runtime",
307+
feature = "thread",
308308
feature = "time",
309309
target_arch = "x86",
310310
)

src/backend/linux_raw/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
mod arch;
1919
mod conv;
2020
mod reg;
21-
#[cfg(any(feature = "time", feature = "process", target_arch = "x86"))]
21+
#[cfg(any(feature = "time", feature = "thread", target_arch = "x86"))]
2222
mod vdso;
23-
#[cfg(any(feature = "time", feature = "process", target_arch = "x86"))]
23+
#[cfg(any(feature = "time", feature = "thread", target_arch = "x86"))]
2424
mod vdso_wrappers;
2525

2626
#[cfg(feature = "event")]
@@ -32,8 +32,8 @@ pub(crate) mod event;
3232
not(feature = "use-explicitly-provided-auxv"),
3333
any(
3434
feature = "param",
35-
feature = "process",
3635
feature = "runtime",
36+
feature = "thread",
3737
feature = "time",
3838
target_arch = "x86",
3939
)
@@ -51,8 +51,8 @@ pub(crate) mod mount;
5151
pub(crate) mod net;
5252
#[cfg(any(
5353
feature = "param",
54-
feature = "process",
5554
feature = "runtime",
55+
feature = "thread",
5656
feature = "time",
5757
target_arch = "x86",
5858
))]

src/backend/linux_raw/termios/syscalls.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@
88
use crate::backend::c;
99
use crate::backend::conv::{by_ref, c_uint, ret};
1010
use crate::fd::BorrowedFd;
11+
#[cfg(feature = "alloc")]
12+
use crate::ffi::CStr;
1113
use crate::io;
1214
use crate::pid::Pid;
1315
use crate::termios::{
1416
speed, Action, ControlModes, InputModes, LocalModes, OptionalActions, OutputModes,
1517
QueueSelector, SpecialCodeIndex, Termios, Winsize,
1618
};
1719
#[cfg(feature = "alloc")]
18-
use crate::{ffi::CStr, fs::FileType, path::DecInt};
20+
#[cfg(feature = "fs")]
21+
use crate::{fs::FileType, path::DecInt};
1922
use core::mem::MaybeUninit;
2023

2124
#[inline]
@@ -365,6 +368,7 @@ pub(crate) fn isatty(fd: BorrowedFd<'_>) -> bool {
365368
}
366369

367370
#[cfg(feature = "alloc")]
371+
#[cfg(feature = "fs")]
368372
pub(crate) fn ttyname(fd: BorrowedFd<'_>, buf: &mut [MaybeUninit<u8>]) -> io::Result<usize> {
369373
let fd_stat = crate::backend::fs::syscalls::fstat(fd)?;
370374

src/backend/linux_raw/thread/syscalls.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ use crate::thread::{
2020
use crate::utils::as_mut_ptr;
2121
use core::mem::MaybeUninit;
2222
use core::sync::atomic::AtomicU32;
23-
use linux_raw_sys::general::TIMER_ABSTIME;
24-
use linux_raw_sys::general::{membarrier_cmd, membarrier_cmd_flag};
23+
use linux_raw_sys::general::{membarrier_cmd, membarrier_cmd_flag, TIMER_ABSTIME};
2524
#[cfg(target_pointer_width = "32")]
2625
use {crate::utils::option_as_ptr, linux_raw_sys::general::timespec as __kernel_old_timespec};
2726

src/backend/linux_raw/vdso_wrappers.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use super::reg::{ArgReg, RetReg, SyscallNumber, A0, A1, A2, A3, A4, A5, R0};
1515
use super::vdso;
1616
#[cfg(target_arch = "x86")]
1717
use core::arch::global_asm;
18-
#[cfg(feature = "process")]
18+
#[cfg(feature = "thread")]
1919
#[cfg(any(
2020
target_arch = "x86_64",
2121
target_arch = "x86",
@@ -33,7 +33,7 @@ use core::sync::atomic::Ordering::Relaxed;
3333
use linux_raw_sys::general::timespec as __kernel_old_timespec;
3434
#[cfg(any(
3535
all(
36-
feature = "process",
36+
feature = "thread",
3737
any(
3838
target_arch = "x86_64",
3939
target_arch = "x86",
@@ -114,7 +114,7 @@ pub(crate) fn clock_gettime_dynamic(which_clock: DynamicClockId<'_>) -> io::Resu
114114
}
115115
}
116116

117-
#[cfg(feature = "process")]
117+
#[cfg(feature = "thread")]
118118
#[cfg(any(
119119
target_arch = "x86_64",
120120
target_arch = "x86",
@@ -266,7 +266,7 @@ pub(super) mod x86_via_vdso {
266266
#[cfg(feature = "time")]
267267
type ClockGettimeType = unsafe extern "C" fn(c::c_int, *mut Timespec) -> c::c_int;
268268

269-
#[cfg(feature = "process")]
269+
#[cfg(feature = "thread")]
270270
#[cfg(any(
271271
target_arch = "x86_64",
272272
target_arch = "x86",
@@ -293,7 +293,7 @@ fn init_clock_gettime() -> ClockGettimeType {
293293
}
294294

295295
/// Initialize `GETCPU` and return its value.
296-
#[cfg(feature = "process")]
296+
#[cfg(feature = "thread")]
297297
#[cfg(any(
298298
target_arch = "x86_64",
299299
target_arch = "x86",
@@ -324,7 +324,7 @@ fn init_syscall() -> SyscallType {
324324
struct Function;
325325
#[cfg(feature = "time")]
326326
static CLOCK_GETTIME: AtomicPtr<Function> = AtomicPtr::new(null_mut());
327-
#[cfg(feature = "process")]
327+
#[cfg(feature = "thread")]
328328
#[cfg(any(
329329
target_arch = "x86_64",
330330
target_arch = "x86",
@@ -394,7 +394,7 @@ unsafe fn _rustix_clock_gettime_via_syscall(
394394
ret(syscall!(__NR_clock_gettime, c_int(clockid), res))
395395
}
396396

397-
#[cfg(feature = "process")]
397+
#[cfg(feature = "thread")]
398398
#[cfg(any(
399399
target_arch = "x86_64",
400400
target_arch = "x86",
@@ -458,7 +458,7 @@ fn minimal_init() {
458458
.ok();
459459
}
460460

461-
#[cfg(feature = "process")]
461+
#[cfg(feature = "thread")]
462462
#[cfg(any(
463463
target_arch = "x86_64",
464464
target_arch = "x86",
@@ -545,7 +545,7 @@ fn init() {
545545
}
546546
}
547547

548-
#[cfg(feature = "process")]
548+
#[cfg(feature = "thread")]
549549
#[cfg(any(
550550
target_arch = "x86_64",
551551
target_arch = "x86",

src/clockid.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ pub enum ClockId {
2525
Monotonic = bitcast!(c::CLOCK_MONOTONIC),
2626

2727
/// `CLOCK_UPTIME`
28+
///
29+
/// On FreeBSD, this is an alias for [`Self::Boottime`].
30+
///
31+
/// On OpenBSD, this differs from `Self::Boottime`; it only advances when
32+
/// the system is not suspended.
33+
///
34+
/// [`Self::Uptime`]: https://docs.rs/rustix/*/x86_64-unknown-freebsd/rustix/time/enum.ClockId.html#variant.Uptime
2835
#[cfg(any(freebsdlike, target_os = "openbsd"))]
2936
#[doc(alias = "CLOCK_UPTIME")]
3037
Uptime = c::CLOCK_UPTIME,
@@ -75,11 +82,6 @@ pub enum ClockId {
7582
Tai = bitcast!(c::CLOCK_TAI),
7683

7784
/// `CLOCK_BOOTTIME`
78-
///
79-
/// On FreeBSD, use [`Self::Uptime`], as `CLOCK_BOOTTIME` is an alias for
80-
/// `CLOCK_UPTIME`.
81-
///
82-
/// [`Self::Uptime`]: https://docs.rs/rustix/*/x86_64-unknown-freebsd/rustix/time/enum.ClockId.html#variant.Uptime
8385
#[cfg(any(linux_kernel, target_os = "fuchsia", target_os = "openbsd"))]
8486
#[doc(alias = "CLOCK_BOOTTIME")]
8587
Boottime = bitcast!(c::CLOCK_BOOTTIME),

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ pub mod runtime;
310310
not(feature = "use-explicitly-provided-auxv"),
311311
any(
312312
feature = "param",
313-
feature = "process",
314313
feature = "runtime",
314+
feature = "thread",
315315
feature = "time",
316316
target_arch = "x86",
317317
)
@@ -328,8 +328,8 @@ pub(crate) mod fs;
328328
not(feature = "use-explicitly-provided-auxv"),
329329
any(
330330
feature = "param",
331-
feature = "process",
332331
feature = "runtime",
332+
feature = "thread",
333333
feature = "time",
334334
target_arch = "x86",
335335
)

src/net/sockopt.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -759,8 +759,9 @@ pub fn ipv6_multicast_hops<Fd: AsFd>(fd: Fd) -> io::Result<u32> {
759759

760760
/// `setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, multiaddr, interface)`
761761
///
762-
/// This is similar to [`set_ip_add_membership`] but always sets `ifindex`
763-
/// value to zero.
762+
/// This is similar to [`set_ip_add_membership`] but always sets the `ifindex`
763+
/// value to zero. See [`set_ip_add_membership_with_ifindex`] instead to also
764+
/// give the `ifindex` value.
764765
///
765766
/// See the [module-level documentation] for more.
766767
///
@@ -778,8 +779,8 @@ pub fn set_ip_add_membership<Fd: AsFd>(
778779
/// `setsockopt(fd, IPPROTO_IP, IP_ADD_MEMBERSHIP, multiaddr, address,
779780
/// ifindex)`
780781
///
781-
/// This is similar to [`set_ip_add_membership_with_ifindex`] but additionally
782-
/// allows a `ifindex` value to be given.
782+
/// This is similar to [`set_ip_add_membership`] but additionally allows an
783+
/// `ifindex` value to be given.
783784
///
784785
/// See the [module-level documentation] for more.
785786
///

src/path/arg.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88
99
use crate::ffi::CStr;
1010
use crate::io;
11-
use crate::path::DecInt;
12-
use crate::path::SMALL_PATH_BUFFER_SIZE;
11+
use crate::path::{DecInt, SMALL_PATH_BUFFER_SIZE};
1312
#[cfg(feature = "alloc")]
1413
use alloc::borrow::ToOwned;
1514
use core::mem::MaybeUninit;

src/process/wait.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ pub enum WaitId<'a> {
295295
/// # Bugs
296296
///
297297
/// This function does not currently support waiting for given process group
298-
/// (the < 0 case of `waitpid`); to do that, currently the [`waitpgid`] or
298+
/// (the `< -1` case of `waitpid`); to do that, currently the [`waitpgid`] or
299299
/// [`waitid`] function must be used.
300300
///
301301
/// This function does not currently support waiting for any process (the

src/termios/tty.rs

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
//! Functions which operate on file descriptors which might be terminals.
22
33
use crate::backend;
4+
#[cfg(feature = "alloc")]
5+
#[cfg(feature = "fs")]
6+
#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))]
7+
use crate::path::SMALL_PATH_BUFFER_SIZE;
48
use backend::fd::AsFd;
59
#[cfg(feature = "alloc")]
610
#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))]
7-
use {
8-
crate::ffi::CString, crate::io, crate::path::SMALL_PATH_BUFFER_SIZE, alloc::vec::Vec,
9-
backend::fd::BorrowedFd,
10-
};
11+
use {crate::ffi::CString, crate::io, alloc::vec::Vec, backend::fd::BorrowedFd};
1112

1213
/// `isatty(fd)`—Tests whether a file descriptor refers to a terminal.
1314
///
@@ -34,14 +35,18 @@ pub fn isatty<Fd: AsFd>(fd: Fd) -> bool {
3435
/// [Linux]: https://man7.org/linux/man-pages/man3/ttyname.3.html
3536
#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))]
3637
#[cfg(feature = "alloc")]
38+
#[cfg(feature = "fs")]
3739
#[doc(alias = "ttyname_r")]
40+
#[cfg_attr(docsrs, doc(cfg(feature = "fs")))]
41+
#[cfg_attr(docsrs, doc(cfg(feature = "alloc")))]
3842
#[inline]
3943
pub fn ttyname<Fd: AsFd, B: Into<Vec<u8>>>(dirfd: Fd, reuse: B) -> io::Result<CString> {
4044
_ttyname(dirfd.as_fd(), reuse.into())
4145
}
4246

4347
#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))]
4448
#[cfg(feature = "alloc")]
49+
#[cfg(feature = "fs")]
4550
#[allow(unsafe_code)]
4651
fn _ttyname(dirfd: BorrowedFd<'_>, mut buffer: Vec<u8>) -> io::Result<CString> {
4752
buffer.clear();

tests/event/select.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use rustix::event::{
2-
fd_set_bound, fd_set_insert, fd_set_num_elements, fd_set_remove, FdSetElement, FdSetIter,
2+
fd_set_bound, fd_set_insert, fd_set_num_elements, fd_set_remove, select, FdSetElement,
3+
FdSetIter, Timespec,
34
};
4-
use rustix::event::{select, Timespec};
55
use rustix::fd::{AsRawFd, RawFd};
66
#[cfg(feature = "pipe")]
77
#[cfg(not(windows))]

tests/net/unix.rs

+2
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ fn test_abstract_unix_msg_unconnected() {
416416
do_test_unix_msg_unconnected(name);
417417
}
418418

419+
#[cfg(feature = "pipe")]
419420
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
420421
#[test]
421422
fn test_unix_msg_with_scm_rights() {
@@ -704,6 +705,7 @@ fn test_unix_peercred_implicit() {
704705

705706
/// Like `test_unix_msg_with_scm_rights`, but with multiple file descriptors
706707
/// over multiple control messages.
708+
#[cfg(feature = "pipe")]
707709
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
708710
#[test]
709711
fn test_unix_msg_with_combo() {

tests/net/unix_alloc.rs

+2
Original file line numberDiff line numberDiff line change
@@ -414,6 +414,7 @@ fn test_abstract_unix_msg_unconnected() {
414414
do_test_unix_msg_unconnected(name);
415415
}
416416

417+
#[cfg(feature = "pipe")]
417418
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
418419
#[test]
419420
fn test_unix_msg_with_scm_rights() {
@@ -649,6 +650,7 @@ fn test_unix_peercred() {
649650

650651
/// Like `test_unix_msg_with_scm_rights`, but with multiple file descriptors
651652
/// over multiple control messages.
653+
#[cfg(feature = "pipe")]
652654
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
653655
#[test]
654656
fn test_unix_msg_with_combo() {

tests/path/arg.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
use rustix::ffi::{CStr, CString};
55
use rustix::io;
6-
use rustix::path::Arg;
7-
use rustix::path::DecInt;
6+
use rustix::path::{Arg, DecInt};
87
use std::borrow::Cow;
98
use std::ffi::{OsStr, OsString};
109
use std::path::{Component, Components, Iter, Path, PathBuf};

tests/termios/main.rs

+1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ mod pgrp;
1010
mod sid;
1111
#[cfg(all(not(windows), feature = "pty"))]
1212
mod termios;
13+
#[cfg(feature = "fs")]
1314
#[cfg(not(any(windows, target_os = "fuchsia")))]
1415
mod ttyname;

0 commit comments

Comments
 (0)