Merge branch 'sys-un-utsname-doc' into 'master'

add descriptions to sys_un and sys_utsname

See merge request redox-os/relibc!1464
This commit is contained in:
Mathew John Roberts
2026-06-15 15:30:25 +01:00
2 changed files with 22 additions and 2 deletions
+5
View File
@@ -5,9 +5,14 @@
use crate::{header::bits_safamily_t::sa_family_t, platform::types::c_char};
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_un.h.html>.
///
/// # Implementation
/// Size of `sun_path` is `108` bytes.
#[repr(C)]
pub struct sockaddr_un {
/// Address family.
pub sun_family: sa_family_t,
/// Socket pathname storage.
pub sun_path: [c_char; 108],
}
+17 -2
View File
@@ -11,24 +11,39 @@ use crate::{
},
};
/// Non-POSIX.
///
/// Length of each character array in `utsname`.
pub const UTSLENGTH: usize = 65;
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/sys_utsname.h.html>.
#[repr(C)]
#[derive(Clone, Debug, OutProject)]
pub struct utsname {
/// Name of this implementation of the operating system.
pub sysname: [c_char; UTSLENGTH],
/// Name of this node within the communications network to which this node
/// is attached, if any.
pub nodename: [c_char; UTSLENGTH],
/// Current release level of this implementation.
pub release: [c_char; UTSLENGTH],
/// Current version level of this release.
pub version: [c_char; UTSLENGTH],
/// Name of the hardware type on which this system is running.
pub machine: [c_char; UTSLENGTH],
/// Non-POSIX.
pub domainname: [c_char; UTSLENGTH],
}
/// See <https://pubs.opengroup.org/onlinepubs/9799919799/functions/uname.html>.
///
/// Stores information identifying the current system in the structure pointed
/// to by `name`.
///
/// Returns a non-negative value upon success, `-1` upon failure.
#[unsafe(no_mangle)]
pub unsafe extern "C" fn uname(uts: *mut utsname) -> c_int {
Sys::uname(unsafe { Out::nonnull(uts) })
pub unsafe extern "C" fn uname(name: *mut utsname) -> c_int {
Sys::uname(unsafe { Out::nonnull(name) })
.map(|()| 0)
.or_minus_one_errno()
}