aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sched_ule.c
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2008-03-16 10:58:09 +0000
committerRobert Watson <rwatson@FreeBSD.org>2008-03-16 10:58:09 +0000
commit237fdd787b20699fc2c01387011b06a9ce746cfa (patch)
tree6564575d1252cf3bc48428a52fcc596c284e459b /sys/kern/sched_ule.c
parentf48a417b24490b3bdb96ce9c6e4cb48b5dc82437 (diff)
downloadsrc-237fdd787b20699fc2c01387011b06a9ce746cfa.tar.gz
src-237fdd787b20699fc2c01387011b06a9ce746cfa.zip
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
Notes
Notes: svn path=/head/; revision=177253
Diffstat (limited to 'sys/kern/sched_ule.c')
-rw-r--r--sys/kern/sched_ule.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c
index eb9f7363463e..8bfec8d89514 100644
--- a/sys/kern/sched_ule.c
+++ b/sys/kern/sched_ule.c
@@ -284,10 +284,11 @@ static struct mtx *sched_switch_migrate(struct tdq *, struct thread *, int);
#endif
static void sched_setup(void *dummy);
-SYSINIT(sched_setup, SI_SUB_RUN_QUEUE, SI_ORDER_FIRST, sched_setup, NULL)
+SYSINIT(sched_setup, SI_SUB_RUN_QUEUE, SI_ORDER_FIRST, sched_setup, NULL);
static void sched_initticks(void *dummy);
-SYSINIT(sched_initticks, SI_SUB_CLOCKS, SI_ORDER_THIRD, sched_initticks, NULL)
+SYSINIT(sched_initticks, SI_SUB_CLOCKS, SI_ORDER_THIRD, sched_initticks,
+ NULL);
/*
* Print the threads waiting on a run-queue.