summaryrefslogtreecommitdiff
path: root/sys/kern/subr_prof.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>1995-08-28 09:19:25 +0000
committerJulian Elischer <julian@FreeBSD.org>1995-08-28 09:19:25 +0000
commit2b14f991e64ebe31ca31a1a41237061c22a753d0 (patch)
tree53b6da073fd58ab81ebf18bb0642954c76b642bd /sys/kern/subr_prof.c
parentfe89a532f18d81f8e76e48fc462f070e870d035d (diff)
Notes
Diffstat (limited to 'sys/kern/subr_prof.c')
-rw-r--r--sys/kern/subr_prof.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c
index 3c8ef387223e..56c2a6e89068 100644
--- a/sys/kern/subr_prof.c
+++ b/sys/kern/subr_prof.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)subr_prof.c 8.3 (Berkeley) 9/23/93
- * $Id: subr_prof.c,v 1.5 1995/01/29 03:03:23 bde Exp $
+ * $Id: subr_prof.c,v 1.6 1995/03/16 18:12:41 bde Exp $
*/
#include <sys/param.h>
@@ -48,6 +48,14 @@
#include <sys/malloc.h>
#include <sys/gmon.h>
+/*
+ * System initialization
+ */
+
+extern void kmstartup(); /* should be static*/
+SYSINIT(kmem, SI_SUB_KPROF, SI_ORDER_FIRST, kmstartup, NULL)
+
+
struct gmonparam _gmonparam = { GMON_PROF_OFF };
extern char btext[];