Skip to content

Commit f7a9b13

Browse files
committed
More comments.
1 parent dfa1d25 commit f7a9b13

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

src/imp/libc/io/poll_fd.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ bitflags! {
4343
}
4444
}
4545

46-
/// `struct pollfd`
46+
/// `struct pollfd`—File descriptor and flags for use with [`poll`].
47+
///
48+
/// [`poll`]: rustix::io::poll
49+
#[doc(alias = "pollfd")]
4750
#[derive(Clone, Debug)]
4851
#[repr(transparent)]
4952
pub struct PollFd<'fd> {

src/imp/linux_raw/io/poll_fd.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ bitflags! {
3131
}
3232
}
3333

34-
/// `struct pollfd`
34+
/// `struct pollfd`—File descriptor and flags for use with [`poll`].
35+
///
36+
/// [`poll`]: rustix::io::poll
37+
#[doc(alias = "pollfd")]
3538
#[repr(C)]
3639
#[derive(Debug, Clone)]
3740
pub struct PollFd<'fd> {

src/io/dup.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub fn dup2<Fd: AsFd>(fd: &Fd, new: &OwnedFd) -> io::Result<()> {
5858
/// same underlying [file description] as the existing `OwnedFd` instance,
5959
/// closing `new` and reusing its file descriptor, with flags.
6060
///
61-
/// `dup2_with` is the same as `dup2` but adds an additional flags operand.
61+
/// `dup2_with` is the same as [`dup2`] but adds an additional flags operand.
6262
///
6363
/// # References
6464
/// - [POSIX]

src/io/mmap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ pub unsafe fn mlock(ptr: *mut c_void, len: usize) -> io::Result<()> {
184184
/// `mlock2(ptr, len, flags)`—Lock memory into RAM, with
185185
/// flags.
186186
///
187-
/// `mlock_with` is the same as `mlock` but adds an additional flags operand.
187+
/// `mlock_with` is the same as [`mlock`] but adds an additional flags operand.
188188
///
189189
/// # Safety
190190
///

src/io/owned_fd.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use core::fmt;
1616
use core::mem::{forget, ManuallyDrop};
1717

1818
/// A wrapper around `io_lifetimes::OwnedFd` which closes the file descriptor
19-
/// using `rustix`'s own `close` rather than libc's `close`.
19+
/// using `rustix`'s own [`close`] rather than libc's `close`.
2020
#[repr(transparent)]
2121
pub struct OwnedFd {
2222
inner: ManuallyDrop<crate::imp::fd::OwnedFd>,

src/net/socket.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ pub fn socket(domain: AddressFamily, type_: SocketType, protocol: Protocol) -> i
4040
/// however it is not safe in general to rely on this, as file descriptors
4141
/// may be unexpectedly allocated on other threads or in libraries.
4242
///
43-
/// `socket_with` is the same as `socket` but adds an additional flags operand.
43+
/// `socket_with` is the same as [`socket`] but adds an additional flags
44+
/// operand.
4445
///
4546
/// # References
4647
/// - [POSIX]
@@ -200,7 +201,8 @@ pub fn accept<Fd: AsFd>(sockfd: &Fd) -> io::Result<OwnedFd> {
200201
/// descriptor, it is not safe in general to rely on this, as file descriptors
201202
/// may be unexpectedly allocated on other threads or in libraries.
202203
///
203-
/// `accept_with` is the same as `accept` but adds an additional flags operand.
204+
/// `accept_with` is the same as [`accept`] but adds an additional flags
205+
/// operand.
204206
///
205207
/// # References
206208
/// - [POSIX]
@@ -238,8 +240,8 @@ pub fn acceptfrom<Fd: AsFd>(sockfd: &Fd) -> io::Result<(OwnedFd, SocketAddrAny)>
238240
///
239241
/// Use [`accept_with`] if the peer address isn't needed.
240242
///
241-
/// `acceptfrom_with` is the same as `acceptfrom` but adds an additional flags
242-
/// operand.
243+
/// `acceptfrom_with` is the same as [`acceptfrom`] but adds an additional
244+
/// flags operand.
243245
///
244246
/// # References
245247
/// - [POSIX]

0 commit comments

Comments
 (0)