lm3s1968: add graphic to the example.
[bertos.git] / bertos / kern / monitor.c
index 5995fc53d223954ee4905afb38183457c18f5917..edcf7776d9549277bf0aae4af9b7812dee372070 100644 (file)
@@ -118,12 +118,12 @@ void monitor_report(void)
        Node *node;
        int i;
 
+       proc_forbid();
        kprintf("%-9s%-9s%-9s%-9s%s\n", "TCB", "SPbase", "SPsize", "SPfree", "Name");
        for (i = 0; i < 56; i++)
                kputchar('-');
        kputchar('\n');
 
-       proc_forbid();
        FOREACH_NODE(node, &MonitorProcs)
        {
                Process *p = containerof(node, Process, monitor.link);
@@ -147,7 +147,7 @@ static void NORETURN monitor(void)
                        Process *p = containerof(node, Process, monitor.link);
                        size_t free = monitor_checkStack(p->stack_base, p->stack_size);
 
-                       if (free < 0x20)
+                       if (p->stack_base && free < 0x20)
                                kprintf("MONITOR: Free stack of process '%s' is only %u chars\n",
                                                p->monitor.name, (unsigned int)free);
                }