diff options
author | Christian Cunningham <cc@localhost> | 2022-01-23 16:23:56 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-23 16:23:56 -0700 |
commit | 741e7431d013c7fda4a1b8b34bcc2dfa1ecda039 (patch) | |
tree | 0301b7de87c34e13b3028e80fbf34bb93c2d58c6 /src/util | |
parent | 1b005b885a713199106587f3e6d8f53f0ecfdfcd (diff) |
Visual view of memory map
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/status.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/status.c b/src/util/status.c index bb6dd68..155f016 100644 --- a/src/util/status.c +++ b/src/util/status.c @@ -2,6 +2,7 @@ #include <globals.h> #include <graphics/drawer.h> #include <graphics/lfb.h> +#include <lib/mem.h> #include <symbols.h> #include <sys/core.h> #include <sys/schedule.h> @@ -181,4 +182,5 @@ void status(void) g_Drawer.y = y; draw_stacks(); + vheap_info(); } |