diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2024-03-15 13:16:02 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2024-03-15 13:16:02 -0400 |
commit | dd5d9e1d48396cbc226ff14fe557a55613c91fcb (patch) | |
tree | b0ec9f54b80f26777ac08b723b42c1c64c5a2bda /boot | |
parent | f46ab8ca2050ee77edf6e6b979875426bdaf29dc (diff) | |
download | jove-kernel-dd5d9e1d48396cbc226ff14fe557a55613c91fcb.tar.gz jove-kernel-dd5d9e1d48396cbc226ff14fe557a55613c91fcb.tar.bz2 jove-kernel-dd5d9e1d48396cbc226ff14fe557a55613c91fcb.zip |
better buddy memory allocator
Diffstat (limited to 'boot')
-rw-r--r-- | boot/boot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/boot.h b/boot/boot.h index d7571d8..cfdfa68 100644 --- a/boot/boot.h +++ b/boot/boot.h @@ -11,7 +11,7 @@ struct MemoryMapEntry { bool usable; }; -#define MEMORY_MAP_MAX_ENTRIES 64 +#define MEMORY_MAP_MAX_ENTRIES 128 struct MemoryMap { size_t count; struct MemoryMapEntry entries[MEMORY_MAP_MAX_ENTRIES]; |