diff options
author | jhb <jhb@FreeBSD.org> | 2006-07-28 20:22:58 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2006-07-28 20:22:58 +0000 |
commit | 3a707d012d83e75806f62c703deb463deb53892a (patch) | |
tree | 784236d24f467a371ca817e11736d0952ec4baac /sys/sparc64 | |
parent | 392d64a02c2c759941b5f8ef6dd8399bc8c71260 (diff) | |
download | FreeBSD-src-3a707d012d83e75806f62c703deb463deb53892a.zip FreeBSD-src-3a707d012d83e75806f62c703deb463deb53892a.tar.gz |
Retire SYF_ARGMASK and remove both SYF_MPSAFE and SYF_ARGMASK. sy_narg is
now back to just being an argument count.
Diffstat (limited to 'sys/sparc64')
-rw-r--r-- | sys/sparc64/sparc64/trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/trap.c b/sys/sparc64/sparc64/trap.c index dcc30f5..6f629d4 100644 --- a/sys/sparc64/sparc64/trap.c +++ b/sys/sparc64/sparc64/trap.c @@ -560,7 +560,7 @@ syscall(struct trapframe *tf) else callp = &p->p_sysent->sv_table[code]; - narg = callp->sy_narg & SYF_ARGMASK; + narg = callp->sy_narg; if (narg <= regcnt) { argp = &tf->tf_out[reg]; |