svn commit: r198391 - head/sys/sys

John Baldwin jhb at FreeBSD.org
Fri Oct 23 13:28:33 UTC 2009


Author: jhb
Date: Fri Oct 23 13:28:33 2009
New Revision: 198391
URL: http://svn.freebsd.org/changeset/base/198391

Log:
  Properly sort the intr_event_describe_handler() prototype.
  
  Submitted by:	bde

Modified:
  head/sys/sys/interrupt.h

Modified: head/sys/sys/interrupt.h
==============================================================================
--- head/sys/sys/interrupt.h	Fri Oct 23 13:07:22 2009	(r198390)
+++ head/sys/sys/interrupt.h	Fri Oct 23 13:28:33 2009	(r198391)
@@ -168,12 +168,12 @@ int	intr_event_create(struct intr_event 
 	    void (*post_ithread)(void *), void (*post_filter)(void *),
 	    int (*assign_cpu)(void *, u_char), const char *fmt, ...)
 	    __printflike(9, 10);
+int	intr_event_describe_handler(struct intr_event *ie, void *cookie,
+	    const char *descr);
 int	intr_event_destroy(struct intr_event *ie);
 void	intr_event_execute_handlers(struct proc *p, struct intr_event *ie);
 int	intr_event_handle(struct intr_event *ie, struct trapframe *frame);
 int	intr_event_remove_handler(void *cookie);
-int	intr_event_describe_handler(struct intr_event *ie, void *cookie,
-	    const char *descr);
 int	intr_getaffinity(int irq, void *mask);
 void	*intr_handler_source(void *cookie);
 int	intr_setaffinity(int irq, void *mask);


More information about the svn-src-all mailing list