aboutsummaryrefslogtreecommitdiff
path: root/src/mem.rs
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-20 12:49:33 -0700
committerChristian Cunningham <cc@localhost>2022-08-20 12:49:33 -0700
commita36c3e86e2030ec91900dcab9b0ebc770960b31b (patch)
treef9d27199a03e9180b6871935d8b94eaab53cc7ef /src/mem.rs
parentd6b83355ac0cdd266d11973bbc88ab10417e3e68 (diff)
O(1) deallocation
Diffstat (limited to 'src/mem.rs')
-rw-r--r--src/mem.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mem.rs b/src/mem.rs
index 920965d..099532b 100644
--- a/src/mem.rs
+++ b/src/mem.rs
@@ -1 +1,4 @@
+//! Memory crate
+//!
+//! Provides the Allocator for the OS.
pub mod alloc;