[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: gnumach debugger advice
From: |
Samuel Thibault |
Subject: |
Re: gnumach debugger advice |
Date: |
Sun, 11 Feb 2018 10:42:41 +0100 |
User-agent: |
NeoMutt/20170113 (1.7.2) |
Brent W. Baccala, on dim. 11 févr. 2018 01:23:10 -0500, wrote:
> So how can I figure out where in processor_set_tasks() (or its subroutines)
> that the kernel has blocked?
show all tasks
Should give you the list of tasks, then
show task $task123
shows the list of threads, then
trace/t $task123.4
shows the backtrace of the thread.
Samuel