Stdlib module kernel/fileio.vitl

This page is a wiki-style reference for one concrete stdlib file. It explains what the file owns, where it fits in the family, and how to decide whether this is the right surface to depend on.

Visual portrait of kernel/fileio.vitl
Wiki-style portrait for kernel/fileio.vitl.

Family: kernel

Kind: public stdlib surface

Page style: this reference follows the same “encyclopedic card + portrait + usage contract” logic as the keyword pages, but for stdlib modules.

Summary

Overview

FieldValue
Pathkernel/fileio.vitl
Familykernel
Kindpublic stdlib surface
Line count364
Declared procedures44
Declared forms/picks2

`kernel/fileio.vitl` is a public stdlib surface inside the `kernel` family. It should be read as one focused slice of the broader family responsibility: System-facing runtime helpers such as process, scheduler, threads, sync, users, signals, network, device, and memory.

Purpose

This file should be chosen because of responsibility, not because its name “sounds close enough”. Inside the kernel family, it carries one focused part of the contract and keeps that responsibility separate from neighboring concerns.

  • Use this module when bytes or paths cross a host boundary and architecture must keep that boundary visible.
  • A service manager may use scheduler, process, and signals while keeping policy in separate code.
  • A network-facing runtime should explain why it depends on kernel surfaces instead of lighter families.

Taxonomy

Think of this page as a generated encyclopedia entry rather than a hand-written tutorial. The goal is to show what kind of module this is, how dense it is, and what reading strategy makes sense before depending on it.

  • Large algorithm surface: this file exposes many procedures and likely acts as a domain toolkit rather than a single thin wrapper.
  • Owns domain vocabulary: the module declares data shapes in addition to executable helpers, so its types are part of the contract.
  • Has tuning constants: part of the module behavior is controlled by named constants that document default precision, limits, or policy.
  • Minimal top-level dependencies: the module reads as mostly self-contained from its opening declarations.
  • Explicit export surface: the file ends with visible export declarations instead of relying only on implicit namespace discovery.

Implementation profile

This profile is inferred directly from the source text. It does not replace reading the file, but it tells you quickly whether the module is mostly declarative, loop-heavy, branch-heavy, or organized around many small exits.

SignalCountWhat it suggests
if0Branching density and local decision-making.
while0Loop-heavy or iterative implementation style.
for0Collection-style traversal at source level.
match0Variant-driven branching or grammar-style decoding.
let0Local state and intermediate value density.
give42Number of explicit exit points and result shaping.

Top-level API inventory

SurfaceItems
Proceduresopen, creat, close, read, write, lseek, pread, pwrite, fsync, fdatasync, dup, dup2
FormsDirEnt, FileStat
Picksnone declared at top level
ConstantsSTDIN_FILENO, STDOUT_FILENO, STDERR_FILENO, O_RDONLY, O_WRONLY, O_RDWR, O_APPEND, O_CREAT, O_EXCL, O_TRUNC, O_NONBLOCK, O_SYNC
Exports*

Imported surfaces

This file does not advertise a top-level `use` surface in its opening declarations. That often means it is either self-contained or an aggregation layer.

Position in family

This file is module 3 of 12 in the kernel family when ordered by path. By procedure count it ranks 2, and by line count it ranks 1. Those ranks are useful as rough signals of breadth, not as quality judgments.

Declaration map

The declaration map turns raw source into a scan-friendly catalog. It is useful when the file is large enough that a reader wants to orient by kinds of surfaces first.

LineNameKindRole
1vitte/kernel_name/fileiospaceDeclares the namespace that anchors this file in the stdlib tree.
9STDIN_FILENOconstDefines a named constant reused across the module.
10STDOUT_FILENOconstDefines a named constant reused across the module.
11STDERR_FILENOconstDefines a named constant reused across the module.
14O_RDONLYconstDefines a named constant reused across the module.
15O_WRONLYconstDefines a named constant reused across the module.
16O_RDWRconstDefines a named constant reused across the module.
17O_APPENDconstDefines a named constant reused across the module.
18O_CREATconstDefines a named constant reused across the module.
19O_EXCLconstDefines a named constant reused across the module.
20O_TRUNCconstDefines a named constant reused across the module.
21O_NONBLOCKconstDefines a named constant reused across the module.
22O_SYNCconstDefines a named constant reused across the module.
25S_IRUSRconstDefines a named constant reused across the module.
26S_IWUSRconstDefines a named constant reused across the module.
27S_IXUSRconstDefines a named constant reused across the module.
28S_IRGRPconstDefines a named constant reused across the module.
29S_IWGRPconstDefines a named constant reused across the module.
30S_IXGRPconstDefines a named constant reused across the module.
31S_IROTHconstDefines a named constant reused across the module.
32S_IWOTHconstDefines a named constant reused across the module.
33S_IXOTHconstDefines a named constant reused across the module.
36S_ISREGconstDefines a named constant reused across the module.
37S_ISDIRconstDefines a named constant reused across the module.
38S_ISCHRconstDefines a named constant reused across the module.
39S_ISBLKconstDefines a named constant reused across the module.
40S_ISFIFOconstDefines a named constant reused across the module.
41S_ISLNKconstDefines a named constant reused across the module.
42S_ISSOCKconstDefines a named constant reused across the module.
45SEEK_SETconstDefines a named constant reused across the module.
46SEEK_CURconstDefines a named constant reused across the module.
47SEEK_ENDconstDefines a named constant reused across the module.
50DirEntformIntroduces a structured data shape that other procedures can exchange.
59FileStatformIntroduces a structured data shape that other procedures can exchange.
79openprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
84creatprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
89closeprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
94readprocOwns byte movement or host I/O interaction.
99writeprocOwns byte movement or host I/O interaction.
104lseekprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
109preadprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
114pwriteprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
119fsyncprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
124fdatasyncprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
133dupprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
138dup2procRepresents one top-level surface in the file contract and should be read as part of the module boundary.
143fcntlprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
148ioctlprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
153ftruncateprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
158flockprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
167mkdirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
172rmdirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
177opendirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
182closedirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
187readdirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
198rewinddirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
202chdirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
207getcwdprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
212listdirprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
221unlinkprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
226linkprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
231symlinkprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
236readlinkprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
241renameprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
246chmodprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
251fchmodprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
256chownprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
261fchownprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
270statprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
289fstatprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
308lstatprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
327accessprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
332truncateprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
341statvfsprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
346pathconfprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
351fpathconfprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
356syncprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.
360umaskprocRepresents one top-level surface in the file contract and should be read as part of the module boundary.

The table is exhaustive for top-level declarations of the selected kinds. This file declares 78 matching surfaces.

Representative signatures

These signatures are shown in source order so the page keeps the feel of a reference manual, not just a keyword cloud.

  • const STDIN_FILENO: i32 = 0 (line 9)
  • const STDOUT_FILENO: i32 = 1 (line 10)
  • const STDERR_FILENO: i32 = 2 (line 11)
  • const O_RDONLY: i32 = 0 (line 14)
  • const O_WRONLY: i32 = 1 (line 15)
  • const O_RDWR: i32 = 2 (line 16)
  • const O_APPEND: i32 = 1024 (line 17)
  • const O_CREAT: i32 = 64 (line 18)
  • const O_EXCL: i32 = 128 (line 19)
  • const O_TRUNC: i32 = 512 (line 20)
  • const O_NONBLOCK: i32 = 2048 (line 21)
  • const O_SYNC: i32 = 4096 (line 22)
  • const S_IRUSR: i32 = 256 (line 25)
  • const S_IWUSR: i32 = 128 (line 26)
  • const S_IXUSR: i32 = 64 (line 27)
  • const S_IRGRP: i32 = 32 (line 28)
  • const S_IWGRP: i32 = 16 (line 29)
  • const S_IXGRP: i32 = 8 (line 30)

The list is intentionally capped here; the source file declares 77 matching signatures in total.

How to use this module

Start by reading the file as an ownership boundary. Ask three questions: what enters this module, what stable types or procedures it exports, and what adjacent module should stay outside of it.

  1. Read space and top-level imports first so the ownership boundary of kernel/fileio.vitl is explicit.
  2. Scan constants before procedures; they often encode precision, limits, or policy assumptions that explain later behavior.
  3. Read declared forms and picks before algorithms so the data vocabulary is stable in your head.
  4. Traverse procedures in source order; the early helpers usually explain the naming and numeric conventions used later.
  5. Use the source landmarks section below as a table of contents when the file is large.

User example

This example is generated from the actual stdlib module surface. Its job is not to be the smallest snippet possible; its job is to show a realistic consumer-shaped file that exercises the module and mirrors the language keywords the module itself relies on.

space demo/kernel_fileio
const SAMPLE_LABEL: string = "demo"
form UserReport {
  label: string,
  ready: bool
}
proc run_example() -> UserReport {
  let stable: bool = ready and true
    give UserReport { label: "ok", ready: ready }
}
export run_example

Keyword coverage

This table makes the “all keywords of the module” requirement auditable. It compares the detected Vitte keywords in the source file with the generated consumer example above.

KeywordPresent in module sourceUsed in generated user example
spaceyesyes
constyesyes
formyesyes
procyesyes
giveyesyes
returnyesno
atyesno
exportyesyes
andyesyes

Keywords still not exercised directly in the generated snippet: return, at. The page still lists them here so the gap is visible.

Source shape

space vitte/kernel_name/fileio
// File descriptor constants
const STDIN_FILENO: i32 = 0
const STDOUT_FILENO: i32 = 1
const STDERR_FILENO: i32 = 2
// File open flag_bits
const O_RDONLY: i32 = 0
const O_WRONLY: i32 = 1
const O_RDWR: i32 = 2
const O_APPEND: i32 = 1024

The excerpt is not meant to replace the file. It exists to make the module recognizable at first glance, the same way a Wikipedia infobox helps the reader orient before reading the whole article.

Source landmarks

Large files are easier to retain when they have visible landmarks. When the source contains explicit section banners, they are surfaced here; otherwise the first major declarations are used as anchors.

  • Kernel File I/O — File descriptor operations, / Directory operations, file system management
  • File Descriptor Operations
  • File Descriptor Control
  • Directory Operations
  • File Management
  • File Information
  • File System Operations

Source organization

When a file carries its own internal chaptering, those chapters usually reveal the intended reading order better than a flat symbol list. This section reconstructs that organization from the source itself.

Opening declarations

Top-level items: 1. Procedures: 0. Data surfaces: 0. Constants: 0.

First visible names: vitte/kernel_name/fileio

Kernel File I/O — File descriptor operations, / Directory operations, file system management

Top-level items: 33. Procedures: 0. Data surfaces: 2. Constants: 31.

First visible names: STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO, O_RDONLY, O_WRONLY, O_RDWR, O_APPEND, O_CREAT, O_EXCL, O_TRUNC

File Descriptor Operations

Top-level items: 10. Procedures: 10. Data surfaces: 0. Constants: 0.

First visible names: open, creat, close, read, write, lseek, pread, pwrite, fsync, fdatasync

File Descriptor Control

Top-level items: 6. Procedures: 6. Data surfaces: 0. Constants: 0.

First visible names: dup, dup2, fcntl, ioctl, ftruncate, flock

Directory Operations

Top-level items: 9. Procedures: 9. Data surfaces: 0. Constants: 0.

First visible names: mkdir, rmdir, opendir, closedir, readdir, rewinddir, chdir, getcwd, listdir

File Management

Top-level items: 9. Procedures: 9. Data surfaces: 0. Constants: 0.

First visible names: unlink, link, symlink, readlink, rename, chmod, fchmod, chown, fchown

File Information

Top-level items: 5. Procedures: 5. Data surfaces: 0. Constants: 0.

First visible names: stat, fstat, lstat, access, truncate

File System Operations

Top-level items: 6. Procedures: 5. Data surfaces: 0. Constants: 0.

First visible names: statvfs, pathconf, fpathconf, sync, umask, *

Complete API catalog

This catalog is the exhaustive file-level index for the module. It is intentionally closer to a generated encyclopedia appendix than to a tutorial summary.

Constants

LineNameSignatureRole
9STDIN_FILENOconst STDIN_FILENO: i32 = 0Defines a named constant reused across the module.
10STDOUT_FILENOconst STDOUT_FILENO: i32 = 1Defines a named constant reused across the module.
11STDERR_FILENOconst STDERR_FILENO: i32 = 2Defines a named constant reused across the module.
14O_RDONLYconst O_RDONLY: i32 = 0Defines a named constant reused across the module.
15O_WRONLYconst O_WRONLY: i32 = 1Defines a named constant reused across the module.
16O_RDWRconst O_RDWR: i32 = 2Defines a named constant reused across the module.
17O_APPENDconst O_APPEND: i32 = 1024Defines a named constant reused across the module.
18O_CREATconst O_CREAT: i32 = 64Defines a named constant reused across the module.
19O_EXCLconst O_EXCL: i32 = 128Defines a named constant reused across the module.
20O_TRUNCconst O_TRUNC: i32 = 512Defines a named constant reused across the module.
21O_NONBLOCKconst O_NONBLOCK: i32 = 2048Defines a named constant reused across the module.
22O_SYNCconst O_SYNC: i32 = 4096Defines a named constant reused across the module.
25S_IRUSRconst S_IRUSR: i32 = 256Defines a named constant reused across the module.
26S_IWUSRconst S_IWUSR: i32 = 128Defines a named constant reused across the module.
27S_IXUSRconst S_IXUSR: i32 = 64Defines a named constant reused across the module.
28S_IRGRPconst S_IRGRP: i32 = 32Defines a named constant reused across the module.
29S_IWGRPconst S_IWGRP: i32 = 16Defines a named constant reused across the module.
30S_IXGRPconst S_IXGRP: i32 = 8Defines a named constant reused across the module.
31S_IROTHconst S_IROTH: i32 = 4Defines a named constant reused across the module.
32S_IWOTHconst S_IWOTH: i32 = 2Defines a named constant reused across the module.
33S_IXOTHconst S_IXOTH: i32 = 1Defines a named constant reused across the module.
36S_ISREGconst S_ISREG: i32 = 32768Defines a named constant reused across the module.
37S_ISDIRconst S_ISDIR: i32 = 16384Defines a named constant reused across the module.
38S_ISCHRconst S_ISCHR: i32 = 8192Defines a named constant reused across the module.
39S_ISBLKconst S_ISBLK: i32 = 24576Defines a named constant reused across the module.
40S_ISFIFOconst S_ISFIFO: i32 = 4096Defines a named constant reused across the module.
41S_ISLNKconst S_ISLNK: i32 = 40960Defines a named constant reused across the module.
42S_ISSOCKconst S_ISSOCK: i32 = 49152Defines a named constant reused across the module.
45SEEK_SETconst SEEK_SET: i32 = 0Defines a named constant reused across the module.
46SEEK_CURconst SEEK_CUR: i32 = 1Defines a named constant reused across the module.
47SEEK_ENDconst SEEK_END: i32 = 2Defines a named constant reused across the module.

Data surfaces

LineNameSignatureRole
50DirEntform DirEnt {Introduces a structured data shape that other procedures can exchange.
59FileStatform FileStat {Introduces a structured data shape that other procedures can exchange.

Procedures

LineNameSignatureRole
79openproc open(path: string, flag_bits: i32, mode: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
84creatproc creat(path: string, mode: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
89closeproc close(fd: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
94readproc read(fd: i32, nbytes: i64) -> string {Owns byte movement or host I/O interaction.
99writeproc write(fd: i32, buf: string) -> i64 {Owns byte movement or host I/O interaction.
104lseekproc lseek(fd: i32, offset: i64, whence: i32) -> i64 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
109preadproc pread(fd: i32, offset: i64, nbytes: i64) -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
114pwriteproc pwrite(fd: i32, buf: string, offset: i64) -> i64 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
119fsyncproc fsync(fd: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
124fdatasyncproc fdatasync(fd: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
133dupproc dup(fd: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
138dup2proc dup2(oldfd: i32, newfd: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
143fcntlproc fcntl(fd: i32, cmd: i32, arg: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
148ioctlproc ioctl(fd: i32, request: i32, arg: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
153ftruncateproc ftruncate(fd: i32, length: i64) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
158flockproc flock(fd: i32, operation: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
167mkdirproc mkdir(path: string, mode: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
172rmdirproc rmdir(path: string) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
177opendirproc opendir(path: string) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
182closedirproc closedir(dirfd: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
187readdirproc readdir(dirfd: i32) -> DirEnt {Represents one top-level surface in the file contract and should be read as part of the module boundary.
198rewinddirproc rewinddir(dirfd: i32) {Represents one top-level surface in the file contract and should be read as part of the module boundary.
202chdirproc chdir(path: string) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
207getcwdproc getcwd() -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
212listdirproc listdir(path: string) -> [string] {Represents one top-level surface in the file contract and should be read as part of the module boundary.
221unlinkproc unlink(path: string) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
226linkproc link(oldpath: string, newpath: string) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
231symlinkproc symlink(oldpath: string, newpath: string) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
236readlinkproc readlink(path: string) -> string {Represents one top-level surface in the file contract and should be read as part of the module boundary.
241renameproc rename(oldpath: string, newpath: string) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
246chmodproc chmod(path: string, mode: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
251fchmodproc fchmod(fd: i32, mode: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
256chownproc chown(path: string, uid: i32, gid: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
261fchownproc fchown(fd: i32, uid: i32, gid: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
270statproc stat(path: string) -> FileStat {Represents one top-level surface in the file contract and should be read as part of the module boundary.
289fstatproc fstat(fd: i32) -> FileStat {Represents one top-level surface in the file contract and should be read as part of the module boundary.
308lstatproc lstat(path: string) -> FileStat {Represents one top-level surface in the file contract and should be read as part of the module boundary.
327accessproc access(path: string, mode: i32) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
332truncateproc truncate(path: string, length: i64) -> int {Represents one top-level surface in the file contract and should be read as part of the module boundary.
341statvfsproc statvfs(path: string) -> [i64] {Represents one top-level surface in the file contract and should be read as part of the module boundary.
346pathconfproc pathconf(path: string, name: string) -> i64 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
351fpathconfproc fpathconf(fd: i32, name: string) -> i64 {Represents one top-level surface in the file contract and should be read as part of the module boundary.
356syncproc sync() {Represents one top-level surface in the file contract and should be read as part of the module boundary.
360umaskproc umask(mask: i32) -> i32 {Represents one top-level surface in the file contract and should be read as part of the module boundary.

Exports

LineNameSignatureRole
364*export *Re-exports surfaces that the module wants to expose as part of its public boundary.

Integration boundaries

Within kernel, this file should remain focused. If a future helper changes the host boundary, scheduling boundary, or data-shape boundary, it probably belongs in a neighbor module instead of being added here by convenience.

  • Family responsibility: System-facing runtime helpers such as process, scheduler, threads, sync, users, signals, network, device, and memory.
  • Family architecture role: Use `kernel` when the program explicitly models system services, scheduling, process behavior, or device-facing coordination.

Composition guidance

Choose this module when

  • Choose kernel/fileio.vitl when the main question is owned by this module rather than by transport, storage, orchestration, or user-interface code.
  • Use this module when bytes or paths cross a host boundary and architecture must keep that boundary visible.
  • A service manager may use scheduler, process, and signals while keeping policy in separate code.
  • A network-facing runtime should explain why it depends on kernel surfaces instead of lighter families.

Pause before extending it when

  • Avoid extending this file when the new helper mostly changes the boundary to host I/O, runtime coordination, or foreign integration instead of staying inside kernel.
  • Check nearby modules such as kernel/device.vitl, kernel/interrupt.vitl, kernel/memory.vitl before adding convenience wrappers here.

Relationship table

This table keeps the page closer to a real encyclopedia entry: a module is easier to understand when compared with its nearest alternatives in the same family.

NeighborProceduresData surfacesWhy compare it
kernel/device.vitl00Shares the same family boundary but carries a distinct slice of responsibility.
kernel/interrupt.vitl90Shares the same family boundary but carries a distinct slice of responsibility.
kernel/memory.vitl181Shares the same family boundary but carries a distinct slice of responsibility.
kernel/network.vitl424Shares the same family boundary but carries a distinct slice of responsibility.
kernel/process.vitl142Shares the same family boundary but carries a distinct slice of responsibility.
kernel/scheduler.vitl10Shares the same family boundary but carries a distinct slice of responsibility.
kernel/signals.vitl181Shares the same family boundary but carries a distinct slice of responsibility.
kernel/sync.vitl346Shares the same family boundary but carries a distinct slice of responsibility.

Neighbor modules