diff options
author | Marvin Borner | 2021-04-15 22:47:54 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-15 22:47:54 +0200 |
commit | 4d4e784770b576199b18f22100689125a18bfd9a (patch) | |
tree | 5009a65f79af966fa6253307e64271479b1b0bed /kernel/inc | |
parent | 462eaa9531b9e62916b02ab52759cd070de755d3 (diff) |
Basic block/unblock
Diffstat (limited to 'kernel/inc')
-rw-r--r-- | kernel/inc/io.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/inc/io.h b/kernel/inc/io.h index 5176bd3..3291bfc 100644 --- a/kernel/inc/io.h +++ b/kernel/inc/io.h @@ -5,6 +5,8 @@ #include <boot.h> #include <def.h> +#include <interrupts.h> +#include <proc.h> #include <sys.h> struct io_dev { @@ -22,4 +24,7 @@ res io_write(enum io_type io, void *buf, u32 offset, u32 count); res io_read(enum io_type io, void *buf, u32 offset, u32 count); res io_poll(u32 *devs) NONNULL; +void io_block(enum io_type io, struct proc *proc, struct regs *r) NONNULL; +void io_unblock(enum io_type io); + #endif |