From 921398936d989aef06be8d869d9162e3d9b294b3 Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sun, 13 Feb 2022 13:22:43 -0700 Subject: Output the count of the task stacks --- src/util/status.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/util/status.c') diff --git a/src/util/status.c b/src/util/status.c index 5672a8c..0e93102 100644 --- a/src/util/status.c +++ b/src/util/status.c @@ -137,6 +137,10 @@ void status(void) write_char(&g_Drawer, '\n'); write_10(&g_Drawer, ((unsigned long)tval)/1000000); + g_Drawer.x = 0; + g_Drawer.y = 7; + write_string(&g_Drawer, "Task Stack #"); + write_hex32(&g_Drawer, sched_stack_count); g_Drawer.x = x; g_Drawer.y = y; -- cgit v1.2.1