Make sigcode and proc_trampoline no-profile.
This commit is contained in:
parent
ee76016e40
commit
456615e083
|
@ -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 @@ backtolocore1:
|
|||
* 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 @@ cpu_switch_queuescan:
|
|||
* 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
|
||||
|
|
Loading…
Reference in New Issue