implement hostname properly

This commit is contained in:
Ashwin Naren
2026-02-07 15:35:47 -08:00
parent 157c29104f
commit c07dd2140c
6 changed files with 66 additions and 4 deletions

View File

@@ -195,6 +195,9 @@ pub enum KernelError {
#[error("Interrupted system call")]
Interrupted,
#[error("Name too long")]
NameTooLong,
#[error("{0}")]
Other(&'static str),
}