summaryrefslogtreecommitdiff
path: root/documentation/storage.txt
diff options
context:
space:
mode:
authorBenji Dial <benji@benjidial.net>2024-05-20 17:40:47 -0400
committerBenji Dial <benji@benjidial.net>2024-05-20 17:40:47 -0400
commit9af5588c30c4126a2800aae1afcb0de2c373dc6c (patch)
treed2a48a97b1664f958b5f88a8b0c03ef8366b0f49 /documentation/storage.txt
parent5a54df93c4e9368c36e69d1e9c88cd2904e92308 (diff)
downloadhilbert-os-9af5588c30c4126a2800aae1afcb0de2c373dc6c.tar.gz
rewrite application stuff in the kernel to support multitasking
Diffstat (limited to 'documentation/storage.txt')
-rw-r--r--documentation/storage.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/documentation/storage.txt b/documentation/storage.txt
deleted file mode 100644
index 4fe8ea3..0000000
--- a/documentation/storage.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-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 bd_result or fs_result,
-since it's a bit unwieldy to propogate those results as is.