summaryrefslogtreecommitdiff
path: root/kernel/src/collections/mod.rs
diff options
context:
space:
mode:
authorNathan Ringo <nathan@remexre.com>2024-08-26 15:25:55 -0500
committerNathan Ringo <nathan@remexre.com>2024-08-26 15:25:55 -0500
commit76f0764cebe313a75b9b170fa23fa940d9e5738a (patch)
treeb56641c41748594582aa56f9a539f04152cfc108 /kernel/src/collections/mod.rs
parentf1897c47a8f03955b76d521d1843a25123bd65a2 (diff)
The start of interrupt and timer support, with some DeviceTree parsing.
Diffstat (limited to 'kernel/src/collections/mod.rs')
-rw-r--r--kernel/src/collections/mod.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/src/collections/mod.rs b/kernel/src/collections/mod.rs
new file mode 100644
index 0000000..ebcfad3
--- /dev/null
+++ b/kernel/src/collections/mod.rs
@@ -0,0 +1,3 @@
+//! Useful data structures for the kernel.
+
+pub mod stack_linked_list;