Handle IRQs inside the kernel
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m42s
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#include <irq/irq.h>
|
||||
#include <libk/rbtree.h>
|
||||
#include <libk/std.h>
|
||||
#include <mm/liballoc.h>
|
||||
#include <mm/malloc.h>
|
||||
#include <sync/spin_lock.h>
|
||||
#include <sys/debug.h>
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#include <libk/std.h>
|
||||
#include <proc/reschedule.h>
|
||||
|
||||
typedef void (*irq_func_t) (void* arg, void* regs, struct reschedule_ctx* rctx);
|
||||
typedef void (*irq_func_t) (void* arg, void* regs, bool user, struct reschedule_ctx* rctx);
|
||||
|
||||
struct irq {
|
||||
uint32_t irq_num;
|
||||
|
||||
Reference in New Issue
Block a user