diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-02-20 13:35:49 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-02-20 13:35:49 +0000 |
commit | 6e6cedbdb30e8a18585d14fb21137b3a1179221b (patch) | |
tree | 31930f232d47c328b5ac4950910197dec4985f80 /sys/ddb/db_watch.c | |
parent | 17a01dc9495d9e83dad0dc0e9ae07171bb9ff5fc (diff) |
netbsd-current import & 'boot' cmd addition.
Diffstat (limited to 'sys/ddb/db_watch.c')
-rw-r--r-- | sys/ddb/db_watch.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c index ff3a5bbe32c..d7e5fd76a14 100644 --- a/sys/ddb/db_watch.c +++ b/sys/ddb/db_watch.c @@ -1,4 +1,4 @@ -/* $NetBSD: db_watch.c,v 1.7 1994/10/09 08:30:15 mycroft Exp $ */ +/* $OpenBSD: db_watch.c,v 1.2 1996/02/20 13:35:46 mickey Exp $ */ /* * Mach Operating System @@ -38,7 +38,11 @@ #include <ddb/db_watch.h> #include <ddb/db_lex.h> #include <ddb/db_access.h> +#include <ddb/db_run.h> #include <ddb/db_sym.h> +#include <ddb/db_output.h> +#include <ddb/db_command.h> +#include <ddb/db_extern.h> /* * Watchpoints. @@ -198,8 +202,13 @@ db_watchpoint_cmd(addr, have_addr, count, modif) } /* list watchpoints */ +/*ARGSUSED*/ void -db_listwatch_cmd() +db_listwatch_cmd(addr, have_addr, count, modif) + db_expr_t addr; + int have_addr; + db_expr_t count; + char * modif; { db_list_watchpoints(); } |