summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r--src/kernel/proc.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h
index a6a8609..f9786b9 100644
--- a/src/kernel/proc.h
+++ b/src/kernel/proc.h
@@ -15,7 +15,6 @@ enum process_state {
PS_WAITS4CHILDDEATH,
PS_WAITS4FS,
PS_WAITS4REQUEST,
- PS_WAITS4IRQ, // set by root vfs
PS_LAST,
};
@@ -44,11 +43,6 @@ struct process {
size_t max_len;
struct fs_wait_response __user *res;
} awaited_req; // PS_WAITS4REQUEST
- struct {
- struct vfs_request *req;
- bool (*ready)();
- void (*callback)(struct process *);
- } waits4irq;
};
struct vfs_request *handled_req;