aboutsummaryrefslogtreecommitdiff
path: root/src/util/status.c
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-13 13:22:43 -0700
committerChristian Cunningham <cc@localhost>2022-02-13 13:23:01 -0700
commit921398936d989aef06be8d869d9162e3d9b294b3 (patch)
tree62e1c575a2df812bfd2c5a7edaf13ed0528d1f4d /src/util/status.c
parent5643e3587507f3351a2ebeb44a5d95d13470741d (diff)
Output the count of the task stacks
Diffstat (limited to 'src/util/status.c')
-rw-r--r--src/util/status.c4
1 files changed, 4 insertions, 0 deletions
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;