diff options
author | Christian Cunningham <cc@localhost> | 2022-01-11 18:28:15 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-11 18:28:15 -0700 |
commit | 8520d34e890885c19966346155675a2532b6feda (patch) | |
tree | 0be88ac50a303ff00542f43e7aa433fcc03ed10e /src/sys | |
parent | 5b3ceca69d5432f976ac487c63a75f8c6275028b (diff) |
Fixed heap free information bug
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sys/core.c b/src/sys/core.c index b492548..13fdbfe 100644 --- a/src/sys/core.c +++ b/src/sys/core.c @@ -60,6 +60,7 @@ void sysinit(void) add_thread(testlocal, 0); add_thread(testlocal, 1); add_thread(testlocal, 3); + void* a = malloca(7, 9); } struct Mutex testm = {.addr = (void*)0xDEADBEEF, .pid = NULL_PID}; |