Re: [PATCH v5 1/2 hurd] libirqhelp: Add library

2023-07-09 Thread Samuel Thibault
Hello, Damien Zammit, le sam. 08 juil. 2023 15:05:11 +, a ecrit: > --- /dev/null > +++ b/libirqhelp/irqhelp.c > +#define IRQ_THREAD_PRIORITY 2 > + > +struct irq { > + void (*handler)(void *); > + void *context; > + int gsi; > + mach_port_t port; > + bool enabled; > + bool shutdown; > +

[PATCH v5 1/2 hurd] libirqhelp: Add library

2023-07-08 Thread Damien Zammit
--- Makefile | 1 + libirqhelp/Makefile | 28 libirqhelp/irqhelp.c | 355 +++ libirqhelp/irqhelp.h | 34 + 4 files changed, 418 insertions(+) create mode 100644 libirqhelp/Makefile create mode 100644 libirqhelp/irqhelp.c create m