svn commit: r192451 - head/sys/sys

John Baldwin jhb at FreeBSD.org
Wed May 20 17:59:50 UTC 2009


Author: jhb
Date: Wed May 20 17:59:49 2009
New Revision: 192451
URL: http://svn.freebsd.org/changeset/base/192451

Log:
  Tweak some comments.

Modified:
  head/sys/sys/interrupt.h

Modified: head/sys/sys/interrupt.h
==============================================================================
--- head/sys/sys/interrupt.h	Wed May 20 17:29:21 2009	(r192450)
+++ head/sys/sys/interrupt.h	Wed May 20 17:59:49 2009	(r192451)
@@ -43,9 +43,9 @@ struct trapframe;
  * together.
  */
 struct intr_handler {
-	driver_filter_t	*ih_filter;	/* Filter function. */
-	driver_intr_t	*ih_handler;	/* Handler function. */
-	void		*ih_argument;	/* Argument to pass to handler. */
+	driver_filter_t	*ih_filter;	/* Filter handler function. */
+	driver_intr_t	*ih_handler;	/* Threaded handler function. */
+	void		*ih_argument;	/* Argument to pass to handlers. */
 	int		 ih_flags;
 	const char	*ih_name;	/* Name of handler. */
 	struct intr_event *ih_event;	/* Event we are connected to. */


More information about the svn-src-head mailing list