summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_prof.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-03-16 10:58:09 +0000
committerrwatson <rwatson@FreeBSD.org>2008-03-16 10:58:09 +0000
commit877d7c65ba9b74233df6c9197fc39c770e809d02 (patch)
tree6564575d1252cf3bc48428a52fcc596c284e459b /sys/kern/subr_prof.c
parente16eb855ef66b817fb04637d522ca52a5e5b5163 (diff)
downloadFreeBSD-src-877d7c65ba9b74233df6c9197fc39c770e809d02.zip
FreeBSD-src-877d7c65ba9b74233df6c9197fc39c770e809d02.tar.gz
In keeping with style(9)'s recommendations on macros, use a ';'
after each SYSINIT() macro invocation. This makes a number of lightweight C parsers much happier with the FreeBSD kernel source, including cflow's prcc and lxr. MFC after: 1 month Discussed with: imp, rink
Diffstat (limited to 'sys/kern/subr_prof.c')
-rw-r--r--sys/kern/subr_prof.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_prof.c b/sys/kern/subr_prof.c
index 8da12ac..5a70482 100644
--- a/sys/kern/subr_prof.c
+++ b/sys/kern/subr_prof.c
@@ -52,7 +52,7 @@ __FBSDID("$FreeBSD$");
static MALLOC_DEFINE(M_GPROF, "gprof", "kernel profiling buffer");
static void kmstartup(void *);
-SYSINIT(kmem, SI_SUB_KPROF, SI_ORDER_FIRST, kmstartup, NULL)
+SYSINIT(kmem, SI_SUB_KPROF, SI_ORDER_FIRST, kmstartup, NULL);
struct gmonparam _gmonparam = { GMON_PROF_OFF };
@@ -574,7 +574,7 @@ tcov_init(void *foo __unused)
}
}
-SYSINIT(tcov_init, 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
OpenPOWER on IntegriCloud