summaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1994-05-25 09:21:21 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1994-05-25 09:21:21 +0000
commit26f9a76710a312a951848542b9ca1f44100450e2 (patch)
tree9179427ac860211c445df663fd2b86267366bfba /sys/ddb
parentdbda0ec78e324aced444959e2c98b89b79f22812 (diff)
Notes
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_command.c6
-rw-r--r--sys/ddb/ddb.h3
2 files changed, 6 insertions, 3 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index 735b3c095ba0..45fd5c5be6c6 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -307,15 +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 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 },
-#endif
{ "procs", db_ps, 0, 0 },
+#endif
{ (char *)0 }
};
@@ -372,7 +372,9 @@ struct command db_command_table[] = {
{ "trace", db_stack_trace_cmd, 0, 0 },
{ "call", db_fncall, CS_OWN, 0 },
{ "show", 0, 0, db_show_cmds },
+#if 0
{ "ps", db_ps, 0, 0 },
+#endif
{ (char *)0, }
};
diff --git a/sys/ddb/ddb.h b/sys/ddb/ddb.h
index 4d7b206bbd7a..877436c12833 100644
--- a/sys/ddb/ddb.h
+++ b/sys/ddb/ddb.h
@@ -37,7 +37,8 @@
#ifndef __h_ddb_ddb
#define __h_ddb_ddb 1
-#include "machine/db_machdep.h" /* type definitions */
+#include <machine/db_machdep.h> /* type definitions */
+#include <vm/vm.h>
/*
* Global variables...