Searched refs:irq_fd (Results 1 - 4 of 4) sorted by relevance

/arch/um/os-Linux/
H A Dirq.c23 int os_waiting_for_events(struct irq_fd *active_fds)
25 struct irq_fd *irq_fd; local
40 irq_fd = active_fds;
44 irq_fd->current_events = pollfds[i].revents;
47 irq_fd = irq_fd->next;
79 void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg,
80 struct irq_fd *active_fds, struct irq_fd ***last_irq_ptr
[all...]
/arch/um/include/shared/
H A Dirq_user.h11 struct irq_fd { struct
12 struct irq_fd *next;
H A Dos.h281 extern int os_waiting_for_events(struct irq_fd *active_fds);
283 extern void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg,
284 struct irq_fd *active_fds, struct irq_fd ***last_irq_ptr2);
285 extern void os_free_irq_later(struct irq_fd *active_fds,
/arch/um/kernel/
H A Dirq.c28 static struct irq_fd *active_fds = NULL;
29 static struct irq_fd **last_irq_ptr = &active_fds;
35 struct irq_fd *irq_fd; local
49 for (irq_fd = active_fds; irq_fd != NULL;
50 irq_fd = irq_fd->next) {
51 if (irq_fd->current_events != 0) {
52 irq_fd
66 struct irq_fd *new_fd, *irq_fd; local
[all...]

Completed in 305 milliseconds