diff options
author | Richard Braun <rbraun@sceen.net> | 2015-12-29 03:26:05 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2015-12-29 03:26:05 +0100 |
commit | f9e95e8372cd62db4805feb30b74223b8db5444b (patch) | |
tree | 6d9462c53c520e88a0717afb20c506e66ecf0ed1 /vm/vm_print.h | |
parent | cd6fbe68303d292a950281038a3062c1b4e9aa11 (diff) | |
download | gnumach-f9e95e8372cd62db4805feb30b74223b8db5444b.tar.gz gnumach-f9e95e8372cd62db4805feb30b74223b8db5444b.tar.bz2 gnumach-f9e95e8372cd62db4805feb30b74223b8db5444b.zip |
Improve VM map debugging
* vm/vm_map.c (vm_map_print): Update arguments to conform to ddb
protocol.
* vm/vm_print.h (vm_map_print): Likewise for prototype.
Diffstat (limited to 'vm/vm_print.h')
-rw-r--r-- | vm/vm_print.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vm/vm_print.h b/vm/vm_print.h index eab534eb..8a36d75e 100644 --- a/vm/vm_print.h +++ b/vm/vm_print.h @@ -23,7 +23,8 @@ #include <machine/db_machdep.h> /* Debugging: print a map */ -extern void vm_map_print(vm_map_t); +extern void vm_map_print(db_expr_t addr, boolean_t have_addr, + db_expr_t count, const char *modif); /* Pretty-print a copy object for ddb. */ extern void vm_map_copy_print(const vm_map_copy_t); |