Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/nathanw_sa]: src/sys/arch cpu_upcall() -> sa_upcall_userret().
details: https://anonhg.NetBSD.org/src/rev/fff8b6c257ea
branches: nathanw_sa
changeset: 505473:fff8b6c257ea
user: nathanw <nathanw%NetBSD.org@localhost>
date: Mon Dec 17 21:34:40 2001 +0000
description:
cpu_upcall() -> sa_upcall_userret().
diffstat:
sys/arch/amiga/amiga/trap.c | 4 ++--
sys/arch/arm/arm/undefined.c | 6 +++---
sys/arch/arm/arm32/ast.c | 4 ++--
sys/arch/arm26/arm26/except.c | 6 +++---
sys/arch/atari/atari/trap.c | 4 ++--
sys/arch/cesfic/cesfic/trap.c | 4 ++--
sys/arch/hp300/hp300/trap.c | 4 ++--
sys/arch/mac68k/mac68k/trap.c | 4 ++--
sys/arch/mips/include/userret.h | 4 ++--
sys/arch/mvme68k/mvme68k/trap.c | 4 ++--
sys/arch/news68k/news68k/trap.c | 4 ++--
sys/arch/next68k/next68k/trap.c | 4 ++--
sys/arch/powerpc/ibm4xx/trap.c | 6 +++---
sys/arch/powerpc/powerpc/trap.c | 6 +++---
sys/arch/sparc/sparc/trap.c | 4 ++--
sys/arch/sun2/sun2/trap.c | 4 ++--
sys/arch/sun3/sun3/trap.c | 4 ++--
sys/arch/x68k/x68k/trap.c | 4 ++--
18 files changed, 40 insertions(+), 40 deletions(-)
diffs (truncated from 360 to 300 lines):
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/amiga/amiga/trap.c
--- a/sys/arch/amiga/amiga/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/amiga/amiga/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.85.8.3 2001/11/25 10:36:01 scw Exp $ */
+/* $NetBSD: trap.c,v 1.85.8.4 2001/12/17 21:34:40 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -215,7 +215,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge recent system time.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/arm/arm/undefined.c
--- a/sys/arch/arm/arm/undefined.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/arm/arm/undefined.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: undefined.c,v 1.9.4.2 2001/11/15 06:39:21 thorpej Exp $ */
+/* $NetBSD: undefined.c,v 1.9.4.3 2001/12/17 21:34:41 nathanw Exp $ */
/*
* Copyright (c) 2001 Ben Harris.
@@ -52,7 +52,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: undefined.c,v 1.9.4.2 2001/11/15 06:39:21 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: undefined.c,v 1.9.4.3 2001/12/17 21:34:41 nathanw Exp $");
#include <sys/malloc.h>
#include <sys/queue.h>
@@ -297,7 +297,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
l->l_priority = l->l_usrpri;
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/arm/arm32/ast.c
--- a/sys/arch/arm/arm32/ast.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/arm/arm32/ast.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ast.c,v 1.1.12.3 2001/11/17 09:00:33 thorpej Exp $ */
+/* $NetBSD: ast.c,v 1.1.12.4 2001/12/17 21:34:41 nathanw Exp $ */
/*
* Copyright (c) 1994,1995 Mark Brinicombe
@@ -79,7 +79,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/arm26/arm26/except.c
--- a/sys/arch/arm26/arm26/except.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/arm26/arm26/except.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: except.c,v 1.38.4.6 2001/11/24 19:56:49 bjh21 Exp $ */
+/* $NetBSD: except.c,v 1.38.4.7 2001/12/17 21:34:41 nathanw Exp $ */
/*-
* Copyright (c) 1998, 1999, 2000 Ben Harris
* All rights reserved.
@@ -32,7 +32,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.38.4.6 2001/11/24 19:56:49 bjh21 Exp $");
+__KERNEL_RCSID(0, "$NetBSD: except.c,v 1.38.4.7 2001/12/17 21:34:41 nathanw Exp $");
#include "opt_cputypes.h"
#include "opt_ddb.h"
@@ -103,7 +103,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
#ifdef DIAGNOSTIC
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/atari/atari/trap.c
--- a/sys/arch/atari/atari/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/atari/atari/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.62.4.3 2001/11/25 10:36:02 scw Exp $ */
+/* $NetBSD: trap.c,v 1.62.4.4 2001/12/17 21:34:42 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -206,7 +206,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge system time to the trapped pc.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/cesfic/cesfic/trap.c
--- a/sys/arch/cesfic/cesfic/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/cesfic/cesfic/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.5.4.3 2001/11/25 10:36:02 scw Exp $ */
+/* $NetBSD: trap.c,v 1.5.4.4 2001/12/17 21:34:42 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -212,7 +212,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge system time to the trapped pc.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/hp300/hp300/trap.c
--- a/sys/arch/hp300/hp300/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/hp300/hp300/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.91.4.3 2001/11/25 10:36:02 scw Exp $ */
+/* $NetBSD: trap.c,v 1.91.4.4 2001/12/17 21:34:42 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -205,7 +205,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge system time to the trapped pc.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/mac68k/mac68k/trap.c
--- a/sys/arch/mac68k/mac68k/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/mac68k/mac68k/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.96.4.3 2001/11/25 10:36:03 scw Exp $ */
+/* $NetBSD: trap.c,v 1.96.4.4 2001/12/17 21:34:43 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -184,7 +184,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge recent system time.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/mips/include/userret.h
--- a/sys/arch/mips/include/userret.h Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/mips/include/userret.h Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: userret.h,v 1.5.8.1 2001/11/17 23:43:41 wdk Exp $ */
+/* $NetBSD: userret.h,v 1.5.8.2 2001/12/17 21:34:43 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -61,7 +61,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
}
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/mvme68k/mvme68k/trap.c
--- a/sys/arch/mvme68k/mvme68k/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/mvme68k/mvme68k/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.61.4.4 2001/11/25 10:27:33 scw Exp $ */
+/* $NetBSD: trap.c,v 1.61.4.5 2001/12/17 21:34:43 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -220,7 +220,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge system time to the trapped pc.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/news68k/news68k/trap.c
--- a/sys/arch/news68k/news68k/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/news68k/news68k/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.19.4.3 2001/11/25 10:36:03 scw Exp $ */
+/* $NetBSD: trap.c,v 1.19.4.4 2001/12/17 21:34:43 nathanw Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -195,7 +195,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge system time to the trapped pc.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/next68k/next68k/trap.c
--- a/sys/arch/next68k/next68k/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/next68k/next68k/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.35.4.3 2001/11/25 10:36:03 scw Exp $ */
+/* $NetBSD: trap.c,v 1.35.4.4 2001/12/17 21:34:44 nathanw Exp $ */
/*
* This file was taken from mvme68k/mvme68k/trap.c
@@ -216,7 +216,7 @@
/* Invoke any pending upcalls. */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
/*
* If profiling, charge system time to the trapped pc.
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/powerpc/ibm4xx/trap.c
--- a/sys/arch/powerpc/ibm4xx/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/powerpc/ibm4xx/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.2.6.2 2001/11/05 19:46:16 briggs Exp $ */
+/* $NetBSD: trap.c,v 1.2.6.3 2001/12/17 21:34:44 nathanw Exp $ */
/*
* Copyright 2001 Wasabi Systems, Inc.
@@ -438,7 +438,7 @@
/* Invoke any pending upcalls */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
done:
@@ -803,7 +803,7 @@
/* Invoke any pending upcalls */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
}
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/powerpc/powerpc/trap.c
--- a/sys/arch/powerpc/powerpc/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/powerpc/powerpc/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.53.4.3 2001/11/17 22:14:17 briggs Exp $ */
+/* $NetBSD: trap.c,v 1.53.4.4 2001/12/17 21:34:44 nathanw Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -453,7 +453,7 @@
/* Invoke any pending upcalls */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
}
@@ -731,7 +731,7 @@
/* Invoke any pending upcalls */
if (l->l_flag & L_SA_UPCALL)
- cpu_upcall(l);
+ sa_upcall_userret(l);
curcpu()->ci_schedstate.spc_curpriority = l->l_priority = l->l_usrpri;
}
diff -r 487be85c7333 -r fff8b6c257ea sys/arch/sparc/sparc/trap.c
--- a/sys/arch/sparc/sparc/trap.c Mon Dec 17 21:31:25 2001 +0000
+++ b/sys/arch/sparc/sparc/trap.c Mon Dec 17 21:34:40 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: trap.c,v 1.106.8.5 2001/11/30 11:53:32 pk Exp $ */
+/* $NetBSD: trap.c,v 1.106.8.6 2001/12/17 21:34:45 nathanw Exp $ */
/*
* Copyright (c) 1996
@@ -236,7 +236,7 @@
/* Invoke any pending upcalls. */
Home |
Main Index |
Thread Index |
Old Index