diff options
author | Damien Zammit <damien@zamaudio.com> | 2023-09-29 04:59:44 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-09-29 11:04:37 +0200 |
commit | dc8b8ba82a33897cd5cf89a61f1b1599e9a30f8b (patch) | |
tree | 5559186a4db64c78ff00e4b8547fc34119f17ba9 /ddb/db_command.c | |
parent | b78e0fc8201610a7a17a163701ac06422c0a74b0 (diff) | |
download | gnumach-dc8b8ba82a33897cd5cf89a61f1b1599e9a30f8b.tar.gz gnumach-dc8b8ba82a33897cd5cf89a61f1b1599e9a30f8b.tar.bz2 gnumach-dc8b8ba82a33897cd5cf89a61f1b1599e9a30f8b.zip |
kdb: Add "show all runqs" debug command
Message-Id: <20230929045936.31535-1-damien@zamaudio.com>
Diffstat (limited to 'ddb/db_command.c')
-rw-r--r-- | ddb/db_command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ddb/db_command.c b/ddb/db_command.c index d21386e6..2fae61b0 100644 --- a/ddb/db_command.c +++ b/ddb/db_command.c @@ -309,6 +309,7 @@ struct db_command db_show_all_cmds[] = { { "tasks", db_show_all_tasks, 0, 0 }, { "threads", db_show_all_threads, 0, 0 }, { "slocks", (db_command_fun_t)db_show_all_slocks, 0, 0 }, + { "runqs", (db_command_fun_t)db_show_all_runqs, 0, 0 }, { (char *)0 } }; |