Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Jan 2012 20:42:56 +0000 (UTC)
From:      Sergey Kandaurov <pluknet@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r230231 - head/sys/kern
Message-ID:  <201201162042.q0GKguDA051030@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pluknet
Date: Mon Jan 16 20:42:56 2012
New Revision: 230231
URL: http://svn.freebsd.org/changeset/base/230231

Log:
  Be pedantic and change // comment to C-style one.
  
  Noticed by:		Bruce Evans

Modified:
  head/sys/kern/kern_intr.c

Modified: head/sys/kern/kern_intr.c
==============================================================================
--- head/sys/kern/kern_intr.c	Mon Jan 16 20:18:10 2012	(r230230)
+++ head/sys/kern/kern_intr.c	Mon Jan 16 20:42:56 2012	(r230231)
@@ -633,7 +633,7 @@ intr_event_add_handler(struct intr_event
 		mtx_lock(&ie->ie_lock);
 		it->it_event = ie; 
 		ih->ih_thread = it;
-		ithread_update(it); // XXX - do we really need this?!?!?
+		ithread_update(it); /* XXX - do we really need this?!?!? */
 	} else { /* Create the global per-event thread if we need one. */
 		while (ie->ie_thread == NULL && handler != NULL) {
 			if (ie->ie_flags & IE_ADDING_THREAD)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201162042.q0GKguDA051030>