Tweak some comments.

This commit is contained in:
John Baldwin 2009-05-20 17:59:49 +00:00
parent 00b4e54ae7
commit e57c620d84

View file

@ -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. */