We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f09492 commit d9ee254Copy full SHA for d9ee254
23-fixes/README.md
@@ -43,7 +43,12 @@ and use those data types instead of our own, then delete them on `type.h`
43
-------------------------------
44
45
First, since `kmalloc` uses a size parameter, we'll use the correct data type `size_t` instead
46
-of `u32int_t`. `<stddef.h>` is required for `size_t`
+of `u32int_t`. `size_t` should be used for all parameters which "count" stuff and cannot be
47
+negative. Include `<stddef.h>`.
48
+
49
+We will fix our `kmalloc` in the future, making it a proper memory manager and aligning data types.
50
+For now, it will always return a new page-aligned memory block.
51
52
53
5. Missing functions
54
--------------------
0 commit comments