summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/include
diff options
context:
space:
mode:
authorMartin Pieuchot <mpi@cvs.openbsd.org>2013-02-05 09:33:30 +0000
committerMartin Pieuchot <mpi@cvs.openbsd.org>2013-02-05 09:33:30 +0000
commitaddd78cf9c816d79f5b74559fdd3796112209f75 (patch)
treefeada9c33ee9e70068bcf12c1fb07717eca3b85b /sys/arch/sparc64/include
parent08fa6b34fe2059cea37f30bc5a6bc44fd9110cde (diff)
Do not profile the various ipi functions. This is a requirement for the
upcoming per-CPU profiling modifications and it does not make much sense to profile such low-level functions anyway. ok kettenis@, miod@
Diffstat (limited to 'sys/arch/sparc64/include')
-rw-r--r--sys/arch/sparc64/include/asm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sparc64/include/asm.h b/sys/arch/sparc64/include/asm.h
index 433a38da925..71d1da049a9 100644
--- a/sys/arch/sparc64/include/asm.h
+++ b/sys/arch/sparc64/include/asm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: asm.h,v 1.6 2012/08/22 17:19:35 pascal Exp $ */
+/* $OpenBSD: asm.h,v 1.7 2013/02/05 09:33:28 mpi Exp $ */
/* $NetBSD: asm.h,v 1.15 2000/08/02 22:24:39 eeh Exp $ */
/*
@@ -104,6 +104,7 @@
#endif
#define ENTRY(name) _ENTRY(_C_LABEL(name)); _PROF_PROLOGUE
+#define NENTRY(name) _ENTRY(_C_LABEL(name))
#define ASENTRY(name) _ENTRY(_ASM_LABEL(name)); _PROF_PROLOGUE
#define FUNC(name) ASENTRY(name)
#define RODATA(name) .align 4; .text; .globl _C_LABEL(name); \