Module Name: src
Committed By: reinoud
Date: Sat Aug 27 21:16:15 UTC 2011
Modified Files:
src/sys/arch/usermode/usermode: machdep.c
Log Message:
Print when retregs() is called.
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/arch/usermode/usermode/machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/usermode/usermode/machdep.c
diff -u src/sys/arch/usermode/usermode/machdep.c:1.15 src/sys/arch/usermode/usermode/machdep.c:1.16
--- src/sys/arch/usermode/usermode/machdep.c:1.15 Thu Aug 25 11:06:29 2011
+++ src/sys/arch/usermode/usermode/machdep.c Sat Aug 27 21:16:15 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: machdep.c,v 1.15 2011/08/25 11:06:29 jmcneill Exp $ */
+/* $NetBSD: machdep.c,v 1.16 2011/08/27 21:16:15 reinoud Exp $ */
/*-
* Copyright (c) 2007 Jared D. McNeill <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.15 2011/08/25 11:06:29 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.16 2011/08/27 21:16:15 reinoud Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -134,6 +134,7 @@
void
setregs(struct lwp *l, struct exec_package *pack, vaddr_t stack)
{
+printf("setregs called: lwp %p, exec package %p, stack %p\n", l, pack, (void *) stack);
}
void