diff options
author | Benji Dial <benji@benjidial.net> | 2024-01-12 20:39:21 -0500 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-01-12 20:39:21 -0500 |
commit | 882e74b2191c059a9226cbd8bcb51c97da36247c (patch) | |
tree | 3ecc05882a9097a85749902130849be65911e684 /documentation/storage.txt | |
parent | c4ab2f6f440f060b1686991b24379a4998aa55a9 (diff) | |
download | hilbert-os-882e74b2191c059a9226cbd8bcb51c97da36247c.tar.gz |
rewrite file system layer
Diffstat (limited to 'documentation/storage.txt')
-rw-r--r-- | documentation/storage.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/storage.txt b/documentation/storage.txt index 2d92dc7..4fe8ea3 100644 --- a/documentation/storage.txt +++ b/documentation/storage.txt @@ -2,6 +2,6 @@ a block_device is a block device such as a disk or a partition that has been seen since the last boot. when a driver detects a device, it should check if a block_device with that id has already been created, and if so, reuse it. -eventually, i would like to implement kernel-space exceptions and use those -instead of having functions return an io_result, since it's a bit unwieldy -to propogate those results as is. +eventually, i would like to implement kernel-space exceptions and +use those instead of having functions return bd_result or fs_result, +since it's a bit unwieldy to propogate those results as is. |