change debugging output in compat_13_sigreturn to distinguish from native
sigreturn
This commit is contained in:
parent
a366b483ec
commit
5bcf824ff0
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: compat_13_machdep.c,v 1.3 1998/09/26 10:07:36 drochner Exp $ */
|
||||
/* $NetBSD: compat_13_machdep.c,v 1.4 1998/10/02 18:49:00 drochner Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright 1996 The Board of Trustees of The Leland Stanford
|
||||
|
@ -15,7 +15,7 @@
|
|||
|
||||
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
|
||||
|
||||
__KERNEL_RCSID(0, "$NetBSD: compat_13_machdep.c,v 1.3 1998/09/26 10:07:36 drochner Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: compat_13_machdep.c,v 1.4 1998/10/02 18:49:00 drochner Exp $");
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
|
@ -58,7 +58,7 @@ compat_13_sys_sigreturn(p, v, retval)
|
|||
scp = SCARG(uap, sigcntxp);
|
||||
#ifdef DEBUG
|
||||
if (sigdebug & SDB_FOLLOW)
|
||||
printf("sigreturn: pid %d, scp %p\n", p->p_pid, scp);
|
||||
printf("sigreturn13: pid %d, scp %p\n", p->p_pid, scp);
|
||||
#endif
|
||||
if ((error = copyin(scp, &ksc, sizeof(ksc))) != 0)
|
||||
return (error);
|
||||
|
|
Loading…
Reference in New Issue