diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-13 23:52:35 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-13 23:52:35 -0400 |
commit | fdeb7fd1ba1c515eaf84b6b46388231d980ce756 (patch) | |
tree | 35a2d97adeb65320f531ef478cd23db9f584a86e /sys | |
parent | 63dfa07eed507f7483eea50db4b610ae7047ac87 (diff) |
kernel: physmem: Make globals static
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/vm/vm_physmem.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/vm/vm_physmem.c b/sys/vm/vm_physmem.c index ed9b5d2..c13130f 100644 --- a/sys/vm/vm_physmem.c +++ b/sys/vm/vm_physmem.c @@ -36,11 +36,11 @@ #include <vm/vm.h> #include <string.h> -size_t highest_frame_idx = 0; -size_t bitmap_size = 0; -size_t bitmap_free_start = 0; +static size_t highest_frame_idx = 0; +static size_t bitmap_size = 0; +static size_t bitmap_free_start = 0; -uint8_t *bitmap; +static uint8_t *bitmap; static struct limine_memmap_response *resp = NULL; static struct spinlock lock = {0}; |