svn commit: r198665 - projects/mips/sys/mips/include

Warner Losh imp at FreeBSD.org
Fri Oct 30 00:37:05 UTC 2009


Author: imp
Date: Fri Oct 30 00:37:04 2009
New Revision: 198665
URL: http://svn.freebsd.org/changeset/base/198665

Log:
  db_expr_t is really closer to a register_t.
  
  Submitted by:	bde@

Modified:
  projects/mips/sys/mips/include/db_machdep.h

Modified: projects/mips/sys/mips/include/db_machdep.h
==============================================================================
--- projects/mips/sys/mips/include/db_machdep.h	Thu Oct 29 23:28:48 2009	(r198664)
+++ projects/mips/sys/mips/include/db_machdep.h	Fri Oct 30 00:37:04 2009	(r198665)
@@ -46,7 +46,7 @@ typedef struct trapframe db_regs_t;
 extern db_regs_t	ddb_regs;	/* register state */
 
 typedef	vm_offset_t	db_addr_t;	/* address - unsigned */
-typedef	intptr_t	db_expr_t;	/* expression - signed */
+typedef	register_t	db_expr_t;	/* expression - signed */
 
 #if BYTE_ORDER == _BIG_ENDIAN
 #define	BYTE_MSF	(1)


More information about the svn-src-projects mailing list