the call to emulation-specific syscall function will be handled differently,

don't do it explicitly
This commit is contained in:
jdolecek 2000-12-09 12:57:17 +00:00
parent 87a6bee3a9
commit 6f0fceeb1d
1 changed files with 1 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: trap.c,v 1.149 2000/12/09 11:21:52 jdolecek Exp $ */
/* $NetBSD: trap.c,v 1.150 2000/12/09 12:57:17 jdolecek Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@ -562,11 +562,6 @@ syscall(frame)
p = curproc;
p->p_md.md_regs = &frame;
if (p->p_emul->e_syscall) {
p->p_emul->e_syscall(&frame);
return;
}
sticks = p->p_sticks;
code = frame.tf_eax;