bus_setup_intr (9)

2009-02-12 Thread Alexej Sokolov
hello, from man: int bus_setup_intr(device_t dev, struct resource *r, int flags, driver_filter_t filter, driver_intr_t ithread, void *arg, void **cookiep); The function filter returns value of type driver_filter_t (int). This function will run if interrupt happen.

Re: bus_setup_intr (9)

2009-02-12 Thread Paolo Pisati
Alexej Sokolov wrote: from man: int bus_setup_intr(device_t dev, struct resource *r, int flags, driver_filter_t filter, driver_intr_t ithread, void *arg, void **cookiep); The function filter returns value of type driver_filter_t (int). This function will run if interrupt

Re: bus_setup_intr (9)

2009-02-12 Thread Kip Macy
in HEAD, see intr_event_handle in sys/kern/kern_intr.c Cheers, Kip On Thu, Feb 12, 2009 at 12:31 PM, Alexej Sokolov bsd.qu...@googlemail.com wrote: hello, from man: int bus_setup_intr(device_t dev, struct resource *r, int flags, driver_filter_t filter, driver_intr_t ithread,