mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
ps works inside ddb now.
This commit is contained in:
parent
9859e2cc85
commit
51f4a07b5a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1147
1 changed files with 5 additions and 2 deletions
|
@ -23,7 +23,7 @@
|
|||
* any improvements or extensions that they make and grant Carnegie the
|
||||
* rights to redistribute these changes.
|
||||
*
|
||||
* $Id: db_command.c,v 1.2 1993/10/16 16:47:10 rgrimes Exp $
|
||||
* $Id: db_command.c,v 1.3 1993/11/25 01:30:04 wollman Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
|
@ -307,13 +307,15 @@ extern void db_listbreak_cmd();
|
|||
extern void db_listwatch_cmd();
|
||||
extern void db_show_regs(), db_show_one_thread(), db_show_all_threads();
|
||||
extern void vm_map_print(), vm_object_print(), vm_page_print();
|
||||
extern void db_ps();
|
||||
extern void ipc_port_print();
|
||||
void db_show_help();
|
||||
|
||||
struct command db_show_all_cmds[] = {
|
||||
#if 0
|
||||
{ "threads", db_show_all_threads,0, 0 },
|
||||
{ "threads", db_show_all_threads, 0, 0 },
|
||||
#endif
|
||||
{ "procs", db_ps, 0, 0 },
|
||||
{ (char *)0 }
|
||||
};
|
||||
|
||||
|
@ -370,6 +372,7 @@ struct command db_command_table[] = {
|
|||
{ "trace", db_stack_trace_cmd, 0, 0 },
|
||||
{ "call", db_fncall, CS_OWN, 0 },
|
||||
{ "show", 0, 0, db_show_cmds },
|
||||
{ "ps", db_ps, 0, 0 },
|
||||
{ (char *)0, }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue