mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Change vm_object_print() to have the correct number and type of args
for a ddb command.
This commit is contained in:
parent
914181e7de
commit
187f023877
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10345
@ -61,7 +61,7 @@
|
||||
* any improvements or extensions that they make and grant Carnegie the
|
||||
* rights to redistribute these changes.
|
||||
*
|
||||
* $Id: vm_object.c,v 1.51 1995/07/29 11:44:27 bde Exp $
|
||||
* $Id: vm_object.c,v 1.52 1995/08/16 16:14:28 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -1407,10 +1407,13 @@ vm_object_check() {
|
||||
* vm_object_print: [ debug ]
|
||||
*/
|
||||
void
|
||||
vm_object_print(object, full)
|
||||
vm_object_t object;
|
||||
vm_object_print(iobject, full, dummy3, dummy4)
|
||||
/* db_expr_t */ int iobject;
|
||||
boolean_t full;
|
||||
/* db_expr_t */ int dummy3;
|
||||
char *dummy4;
|
||||
{
|
||||
vm_object_t object = (vm_object_t)iobject; /* XXX */
|
||||
register vm_page_t p;
|
||||
|
||||
register int count;
|
||||
|
@ -61,7 +61,7 @@
|
||||
* any improvements or extensions that they make and grant Carnegie the
|
||||
* rights to redistribute these changes.
|
||||
*
|
||||
* $Id: vm_object.h,v 1.20 1995/07/16 13:28:37 davidg Exp $
|
||||
* $Id: vm_object.h,v 1.21 1995/07/29 11:44:28 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -170,7 +170,10 @@ void vm_object_page_clean __P((vm_object_t, vm_offset_t, vm_offset_t, boolean_t,
|
||||
void vm_object_page_remove __P((vm_object_t, vm_offset_t, vm_offset_t, boolean_t));
|
||||
void vm_object_pmap_copy __P((vm_object_t, vm_offset_t, vm_offset_t));
|
||||
void vm_object_pmap_remove __P((vm_object_t, vm_offset_t, vm_offset_t));
|
||||
void vm_object_print __P((vm_object_t, boolean_t));
|
||||
#ifdef DDB
|
||||
void vm_object_print __P((/* db_expr_t */ int, boolean_t, /* db_expr_t */ int,
|
||||
char *));
|
||||
#endif
|
||||
void vm_object_reference __P((vm_object_t));
|
||||
void vm_object_shadow __P((vm_object_t *, vm_offset_t *, vm_size_t));
|
||||
void vm_object_terminate __P((vm_object_t));
|
||||
|
Loading…
Reference in New Issue
Block a user