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 the sigcode no-profile.



details:   https://anonhg.NetBSD.org/src/rev/ccb7e04e223e
branches:  trunk
changeset: 526910:ccb7e04e223e
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Mon May 13 21:37:11 2002 +0000

description:
Make the sigcode no-profile.

diffstat:

 sys/arch/alpha/alpha/linux_sigcode.s |  8 ++++----
 sys/arch/alpha/alpha/osf1_sigcode.s  |  6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diffs (63 lines):

diff -r 9f837732abd3 -r ccb7e04e223e sys/arch/alpha/alpha/linux_sigcode.s
--- a/sys/arch/alpha/alpha/linux_sigcode.s      Mon May 13 21:18:51 2002 +0000
+++ b/sys/arch/alpha/alpha/linux_sigcode.s      Mon May 13 21:37:11 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_sigcode.s,v 1.1 2000/11/27 22:29:26 jdolecek Exp $ */
+/* $NetBSD: linux_sigcode.s,v 1.2 2002/05/13 21:37:11 thorpej Exp $ */
 
 /*-
  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
 
 #include <machine/asm.h>
 
-__KERNEL_RCSID(0, "$NetBSD: linux_sigcode.s,v 1.1 2000/11/27 22:29:26 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sigcode.s,v 1.2 2002/05/13 21:37:11 thorpej Exp $");
 
 #include "assym.h"
 
@@ -80,7 +80,7 @@
  * Linux signal trampoline code.  Almost identical to the normal one.
  */
 
-NESTED(linux_sigcode,0,0,ra,0,0)
+NESTED_NOPROFILE(linux_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 */
@@ -92,7 +92,7 @@
 XNESTED(linux_esigcode,0)
        END(linux_sigcode)
 
-NESTED(linux_rt_sigcode,0,0,ra,0,0)
+NESTED_NOPROFILE(linux_rt_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 */
diff -r 9f837732abd3 -r ccb7e04e223e sys/arch/alpha/alpha/osf1_sigcode.s
--- a/sys/arch/alpha/alpha/osf1_sigcode.s       Mon May 13 21:18:51 2002 +0000
+++ b/sys/arch/alpha/alpha/osf1_sigcode.s       Mon May 13 21:37:11 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: osf1_sigcode.s,v 1.1 2000/12/14 18:06:13 mycroft Exp $ */
+/* $NetBSD: osf1_sigcode.s,v 1.2 2002/05/13 21:37:12 thorpej Exp $ */
 
 /*
  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
@@ -61,7 +61,7 @@
 
 #include <compat/osf1/osf1_syscall.h>
 
-__KERNEL_RCSID(0, "$NetBSD: osf1_sigcode.s,v 1.1 2000/12/14 18:06:13 mycroft Exp $");
+__KERNEL_RCSID(0, "$NetBSD: osf1_sigcode.s,v 1.2 2002/05/13 21:37:12 thorpej Exp $");
 
 /*
  * OSF/1 signal trampoline code.
@@ -74,7 +74,7 @@
        ldiq    v0, OSF1_SYSCALLNUM(name);                      \
        call_pal PAL_OSF1_callsys
 
-NESTED(osf1_sigcode,0,0,ra,0,0)
+NESTED_NOPROFILE(osf1_sigcode,0,0,ra,0,0)
        lda     sp, -16(sp)
        stq     a2, 0(sp)
        jsr     ra, (t12)



Home | Main Index | Thread Index | Old Index