summaryrefslogtreecommitdiff
path: root/sys/ddb/db_command.h
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2009-08-08 15:04:44 +0000
committerBob Beck <beck@cvs.openbsd.org>2009-08-08 15:04:44 +0000
commit2d58dd87326d6060063b3fd69af5111759024a44 (patch)
tree569b9a723f8b8ef0762f2537b5c6565cafecba40 /sys/ddb/db_command.h
parent48c93dcab82091d4520edffb2ce17ab53bb4a978 (diff)
two things:
1) fix buffer cache low water mark to allow for extremely low memory machines without dying 2) Add "show bcstats" to ddb to allow for looking at the buffer cache statistics in ddb ok art@ oga@
Diffstat (limited to 'sys/ddb/db_command.h')
-rw-r--r--sys/ddb/db_command.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/ddb/db_command.h b/sys/ddb/db_command.h
index 867a05d703c..a2d7bde4c92 100644
--- a/sys/ddb/db_command.h
+++ b/sys/ddb/db_command.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_command.h,v 1.24 2009/06/17 01:30:30 thib Exp $ */
+/* $OpenBSD: db_command.h,v 1.25 2009/08/08 15:04:43 beck Exp $ */
/* $NetBSD: db_command.h,v 1.8 1996/02/05 01:56:55 christos Exp $ */
/*
@@ -65,6 +65,7 @@ void db_boot_poweroff_cmd(db_expr_t, int, db_expr_t, char *);
void db_stack_trace_cmd(db_expr_t, int, db_expr_t, char *);
void db_dmesg_cmd(db_expr_t, int, db_expr_t, char *);
void db_show_panic_cmd(db_expr_t, int, db_expr_t, char *);
+void db_bcstats_print_cmd(db_expr_t, int, db_expr_t, char *);
extern db_addr_t db_dot, db_last_addr, db_prev, db_next;