From e9dec2c41b0c4c2466be65d8042bf99ad8b4baef Mon Sep 17 00:00:00 2001 From: Colin Percival Date: Fri, 7 Jan 2005 03:25:45 +0000 Subject: [PATCH] Adjust two of my comments to the new world order: Indent protection in the first column is performed using /**, not /*-. --- sys/kern/kern_timeout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index a516a7d61b7e..b55589ebf945 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -74,7 +74,7 @@ struct mtx dont_sleep_in_callout; static struct callout *nextsoftcheck; /* Next callout to be checked. */ -/*- +/** * Locked by callout_lock: * curr_callout - If a callout is in progress, it is curr_callout. * If curr_callout is non-NULL, threads waiting on @@ -91,7 +91,7 @@ static struct callout *curr_callout; static int wakeup_ctr; static int wakeup_needed; -/*- +/** * Locked by callout_wait_lock: * callout_wait - If wakeup_needed is set, callout_wait will be * triggered after the current callout finishes.