diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-09-13 00:41:11 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-09-17 11:39:55 +0200 |
commit | ffd4f3c8239b41d3fe9fa14403eb063e02b6a222 (patch) | |
tree | 1003831e5d09ed184d7584ec84832a6b7506833c /ddb/db_print.h | |
parent | 96cec60d956bfb27f135d4e932a1c319cbc878df (diff) | |
download | gnumach-ffd4f3c8239b41d3fe9fa14403eb063e02b6a222.tar.gz gnumach-ffd4f3c8239b41d3fe9fa14403eb063e02b6a222.tar.bz2 gnumach-ffd4f3c8239b41d3fe9fa14403eb063e02b6a222.zip |
ddb: add `show all tasks' command
* ddb/db_command.c (db_show_all_cmds): Add `tasks'.
* ddb/db_print.c (db_show_all_tasks): New function.
* ddb/db_print.h (db_show_all_tasks): New prototype.
Diffstat (limited to 'ddb/db_print.h')
-rw-r--r-- | ddb/db_print.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ddb/db_print.h b/ddb/db_print.h index dacb47b8..87db97be 100644 --- a/ddb/db_print.h +++ b/ddb/db_print.h @@ -38,6 +38,12 @@ void db_show_one_thread( db_expr_t count, const char * modif); +void db_show_all_tasks( + db_expr_t addr, + int have_addr, + db_expr_t count, + const char * modif); + void db_show_all_threads( db_expr_t addr, int have_addr, |