aboutsummaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-11 18:28:15 -0700
committerChristian Cunningham <cc@localhost>2022-01-11 18:28:15 -0700
commit8520d34e890885c19966346155675a2532b6feda (patch)
tree0be88ac50a303ff00542f43e7aa433fcc03ed10e /src/sys
parent5b3ceca69d5432f976ac487c63a75f8c6275028b (diff)
Fixed heap free information bug
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/core.c1
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};