Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/alpha/alpha Make sigcode and proc_trampoline no-pro...



details:   https://anonhg.NetBSD.org/src/rev/aae6c295c5ee
branches:  trunk
changeset: 526911:aae6c295c5ee
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Mon May 13 21:38:09 2002 +0000

description:
Make sigcode and proc_trampoline no-profile.

diffstat:

 sys/arch/alpha/alpha/locore.s |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r ccb7e04e223e -r aae6c295c5ee sys/arch/alpha/alpha/locore.s
--- a/sys/arch/alpha/alpha/locore.s     Mon May 13 21:37:11 2002 +0000
+++ b/sys/arch/alpha/alpha/locore.s     Mon May 13 21:38:09 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: locore.s,v 1.99 2002/04/30 16:05:13 thorpej Exp $ */
+/* $NetBSD: locore.s,v 1.100 2002/05/13 21:38:09 thorpej Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -73,7 +73,7 @@
 
 #include <machine/asm.h>
 
-__KERNEL_RCSID(0, "$NetBSD: locore.s,v 1.99 2002/04/30 16:05:13 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: locore.s,v 1.100 2002/05/13 21:38:09 thorpej Exp $");
 
 #include "assym.h"
 
@@ -286,7 +286,7 @@
  *      scp+0  beginning of signal context frame
  */
 
-NESTED(sigcode,0,0,ra,0,0)
+NESTED_NOPROFILE(sigcode,0,0,ra,0,0)
        lda     sp, -16(sp)             /* save the sigcontext pointer */
        stq     a2, 0(sp)
        jsr     ra, (t12)               /* call the signal handler (t12==pv) */
@@ -943,7 +943,7 @@
  * address specified by the s1 register and with one argument specified
  * by the s2 register.
  */
-LEAF(proc_trampoline, 0)
+LEAF_NOPROFILE(proc_trampoline, 0)
 #if defined(MULTIPROCESSOR)
        CALL(proc_trampoline_mp)
 #endif



Home | Main Index | Thread Index | Old Index