diff options
author | Marvin Borner | 2021-02-25 23:32:18 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 23:32:18 +0100 |
commit | dec16faf32e75d613e20cac175b8a0c2d3612b94 (patch) | |
tree | 756d1ce3cf07cfe7da80702d96f9ec9e6585dceb /libc/mem.c | |
parent | c258de9038d113cafcc8e290f7f70bbc2f1cb50d (diff) |
Added some debugging features
I've tried to track down the bugs with kvm and q35 but I didn't manage
to do it - yet!
I'll probably look into it soon.
Diffstat (limited to 'libc/mem.c')
-rw-r--r-- | libc/mem.c | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -121,14 +121,15 @@ int mememp(const u8 *buf, u32 n) /** * Heap allocator + * Inspired by SHMALL (MIT License) + * Copyright (c) 2017 Chris Careaga + * Copyright (c) 2021 Marvin Borner */ #ifdef kernel -int malloc_allocated = 0; - -#define HEAP_MAGIC 0x42424242 -#define HEAP_INIT_SIZE 0xff000000 +#define HEAP_MAGIC 0x424242 +#define HEAP_INIT_SIZE 0xf000000 #define HEAP_MIN_SIZE HEAP_INIT_SIZE #define MIN_ALLOC_SZ 4 #define BIN_COUNT 9 @@ -292,7 +293,6 @@ void heap_init(u32 start) static void *_malloc(u32 size) { - malloc_allocated += size; u32 index = bin_index(size); struct h_bin *temp = (struct h_bin *)&heap.bins[index]; struct h_node *found = node_best_fit(temp, size); @@ -348,7 +348,6 @@ static void _free(void *p) struct h_node *head = (struct h_node *)((char *)p - 12); assert(head->magic == HEAP_MAGIC && head->hole == 0); - malloc_allocated -= head->size; if (head == (struct h_node *)(u32 *)heap.start) { head->hole = 1; node_add(&heap.bins[bin_index(head->size)], head); |