Fix last arg to scdebug_ret().

This commit is contained in:
mycroft 1995-03-09 08:59:45 +00:00
parent 1f5c42f54c
commit dc3d752c6c
6 changed files with 13 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.28 1995/03/08 06:50:02 mycroft Exp $ */
/* $NetBSD: trap.c,v 1.29 1995/03/09 08:59:45 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -795,7 +795,7 @@ syscall(code, frame)
}
#ifdef SYSCALL_DEBUG
scdebug_ret(p, code, error, rval[0]);
scdebug_ret(p, code, error, rval);
#endif
#ifdef COMPAT_SUNOS
/* need new p-value for this */

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.6 1995/03/09 07:47:33 mycroft Exp $ */
/* $NetBSD: trap.c,v 1.7 1995/03/09 08:59:52 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -621,7 +621,7 @@ syscall(code, frame)
}
#ifdef SYSCALL_DEBUG
scdebug_ret(p, code, error, rval[0]);
scdebug_ret(p, code, error, rval);
#endif
userret(p, &frame, sticks, (u_int)0, 0);
#ifdef KTRACE

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.30 1995/03/08 06:49:22 mycroft Exp $ */
/* $NetBSD: trap.c,v 1.31 1995/03/09 08:59:56 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -1044,7 +1044,7 @@ syscall(code, frame)
}
#ifdef SYSCALL_DEBUG
scdebug_ret(p, code, error, rval[0]);
scdebug_ret(p, code, error, rval);
#endif
#ifdef COMPAT_SUNOS
/* need new p-value for this */

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.69 1995/03/08 07:12:28 mycroft Exp $ */
/* $NetBSD: trap.c,v 1.70 1995/03/09 09:00:01 mycroft Exp $ */
#undef DEBUG
#define DEBUG
@ -681,7 +681,7 @@ syscall(frame)
}
#ifdef SYSCALL_DEBUG
scdebug_ret(p, code, error, rval[0]);
scdebug_ret(p, code, error, rval);
#endif
userret(p, frame.tf_eip, sticks);
#ifdef KTRACE

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.22 1995/03/09 07:57:42 mycroft Exp $ */
/* $NetBSD: trap.c,v 1.23 1995/03/09 09:00:10 mycroft Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -768,8 +768,9 @@ syscall(code, frame)
frame.f_sr |= PSL_C; /* carry bit */
break;
}
#ifdef SYSCALL_DEBUG
scdebug_ret(p, code, error, rval[0]);
scdebug_ret(p, code, error, rval);
#endif
#ifdef COMPAT_SUNOS
/* need new p-value for this */

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.42 1995/03/09 08:03:51 mycroft Exp $ */
/* $NetBSD: trap.c,v 1.43 1995/03/09 09:00:17 mycroft Exp $ */
/*
* Copyright (c) 1994 Gordon W. Ross
@ -683,7 +683,7 @@ syscall(code, frame)
}
#ifdef SYSCALL_DEBUG
scdebug_ret(p, code, error, rval[0]);
scdebug_ret(p, code, error, rval);
#endif
#ifdef COMPAT_SUNOS
/* need new p-value for this */