diff options
author | Christian Cunningham <cc@localhost> | 2022-01-23 12:59:27 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-01-23 12:59:27 -0700 |
commit | 5bb02975ac5f541245af9b4f6c0be4ffaa2d8463 (patch) | |
tree | 6e101458a5d763cb3fd66d7dc0baeef409a81d47 /src/util/status.c | |
parent | bb09366a7cafeb8ab91b55b98f15934f0f512d47 (diff) |
Draw Exception info to screen
Diffstat (limited to 'src/util/status.c')
-rw-r--r-- | src/util/status.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util/status.c b/src/util/status.c index 460e3b0..bb6dd68 100644 --- a/src/util/status.c +++ b/src/util/status.c @@ -4,6 +4,7 @@ #include <graphics/lfb.h> #include <symbols.h> #include <sys/core.h> +#include <sys/schedule.h> #include <sys/timer.h> #include <util/mutex.h> #include <util/status.h> @@ -71,7 +72,7 @@ void status(void) } */ // Commands - write_string(&g_Drawer, "\nMonitor: Ctrl-A m Exit: Ctrl-A x Timer: Ctrl-T"); + write_string(&g_Drawer, "\nMonitor: Ctrl-A m Exit: Ctrl-A x Timer: Ctrl-T Restart: Ctrl-R"); // GPU IRQ Statuses write_string(&g_Drawer, "\n"); @@ -178,4 +179,6 @@ void status(void) g_Drawer.x = x; g_Drawer.y = y; + + draw_stacks(); } |