Comments!

This commit is contained in:
Caleb J. Gardner
2026-01-31 05:14:00 -06:00
parent 1ff1e91d5e
commit a76803aad1
9 changed files with 37 additions and 4 deletions
+4
View File
@@ -49,6 +49,7 @@ pub const ExtSymlink = struct {
}
};
/// A block or character device.
pub const Dev = packed struct {
hard_links: u32,
dev: u32,
@@ -60,6 +61,7 @@ pub const Dev = packed struct {
}
};
/// An extended block or character device.
pub const ExtDev = packed struct {
hard_links: u32,
dev: u32,
@@ -72,6 +74,7 @@ pub const ExtDev = packed struct {
}
};
/// A socket or FIFO file.
pub const IPC = packed struct {
hard_links: u32,
@@ -82,6 +85,7 @@ pub const IPC = packed struct {
}
};
/// An extended socket or FIFO file.
pub const ExtIPC = packed struct {
hard_links: u32,
xattr_idx: u32,