summaryrefslogtreecommitdiff
path: root/sys/ddb/db_command.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2006-07-11 21:17:59 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2006-07-11 21:17:59 +0000
commit095c0fbe2203f4335e8945d2456d39e2f6ef4b50 (patch)
tree246dd308c73d1acc653951e158f27f6c55299fb6 /sys/ddb/db_command.h
parent51ae263843d507ea58dfb16cf6553678610f2997 (diff)
add mount/vnode/buf and softdep printing commands; tested on a few archs and will make pedro happy too (;
Diffstat (limited to 'sys/ddb/db_command.h')
-rw-r--r--sys/ddb/db_command.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/ddb/db_command.h b/sys/ddb/db_command.h
index 8cd2db2f87c..e1413bffcbc 100644
--- a/sys/ddb/db_command.h
+++ b/sys/ddb/db_command.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_command.h,v 1.19 2005/01/03 16:49:56 miod Exp $ */
+/* $OpenBSD: db_command.h,v 1.20 2006/07/11 21:17:58 mickey Exp $ */
/* $NetBSD: db_command.h,v 1.8 1996/02/05 01:56:55 christos Exp $ */
/*
@@ -38,14 +38,17 @@ struct db_command;
int db_cmd_search(char *, struct db_command *, struct db_command **);
void db_cmd_list(struct db_command *);
void db_command(struct db_command **, struct db_command *);
+void db_buf_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_map_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_malloc_print_cmd(db_expr_t, int, db_expr_t, char *);
+void db_mount_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_object_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_page_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_extent_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_pool_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_proc_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_uvmexp_print_cmd(db_expr_t, int, db_expr_t, char *);
+void db_vnode_print_cmd(db_expr_t, int, db_expr_t, char *);
void db_machine_commands_install(struct db_command *);
void db_help_cmd(db_expr_t, int, db_expr_t, char *);
void db_command_loop(void);