diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-07 19:09:10 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-01-07 19:09:10 +0000 |
| commit | c49bddce94ec23ead7ea16a1d27ff58500d04d34 (patch) | |
| tree | 1ff637b6ec54fd852bad98bdd63a3de8abc483f0 | |
| parent | fa06a012cda639c599206bff0b91f15318a2b717 (diff) | |
Notes
| -rw-r--r-- | sys/kern/subr_prof.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c index adb6147f94f4..495959592cb0 100644 --- a/sys/kern/subr_prof.c +++ b/sys/kern/subr_prof.c @@ -157,7 +157,6 @@ kmstartup(dummy) uintfptr_t tmp_addr; #endif - tcov_init(); /* * Round lowpc and highpc to multiples of the density we're using * so the rest of the scaling (here and in gprof) stays in ints. @@ -563,7 +562,7 @@ tcov_init(void *foo __unused) } } -SYSINIT(kmem, SI_SUB_KPROF, SI_ORDER_SECOND, tcov_init, NULL) +SYSINIT(tcov_init, SI_SUB_KPROF, SI_ORDER_SECOND, tcov_init, NULL) /* * GCC contains magic to recognize calls to for instance execve() and |
