summaryrefslogtreecommitdiff
path: root/sys/arch/amiga
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2001-09-13 15:35:06 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2001-09-13 15:35:06 +0000
commit9dcb3ca591a71f0e3285a106e3640e433acff0bd (patch)
treeff75c7bf0f105081ec9bcf6154785e1920b80625 /sys/arch/amiga
parentcd8169fc0a7de50fa8b31790d10956c5e630d9ea (diff)
Simplify userret.
Diffstat (limited to 'sys/arch/amiga')
-rw-r--r--sys/arch/amiga/amiga/trap.c17
1 files changed, 4 insertions, 13 deletions
diff --git a/sys/arch/amiga/amiga/trap.c b/sys/arch/amiga/amiga/trap.c
index af964e03866..836461cf499 100644
--- a/sys/arch/amiga/amiga/trap.c
+++ b/sys/arch/amiga/amiga/trap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: trap.c,v 1.21 2001/06/27 03:54:13 art Exp $ */
+/* $OpenBSD: trap.c,v 1.22 2001/09/13 15:35:05 art Exp $ */
/* $NetBSD: trap.c,v 1.56 1997/07/16 00:01:47 is Exp $ */
/*
@@ -204,7 +204,7 @@ userret(p, pc, oticks)
int pc;
u_quad_t oticks;
{
- int sig, s;
+ int sig;
while ((sig = CURSIG(p)) != 0)
postsig(sig);
@@ -213,18 +213,9 @@ userret(p, pc, oticks)
if (want_resched) {
/*
- * Since we are curproc, clock will normally just change
- * our priority without moving us from one queue to another
- * (since the running process is not on a queue.)
- * If that happened after we setrunqueue ourselves but before
- * we switch'ed, we might not be on the queue indicated by
- * our priority.
+ * We're being preempted.
*/
- s = splstatclock();
- setrunqueue(p);
- p->p_stats->p_ru.ru_nivcsw++;
- mi_switch();
- splx(s);
+ preempt(NULL);
while ((sig = CURSIG(p)) != 0)
postsig(sig);
}