summaryrefslogtreecommitdiff
path: root/kernel/include/comus/procs.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--kernel/include/comus/procs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/include/comus/procs.h b/kernel/include/comus/procs.h
index 7b1a70a..3df31c3 100644
--- a/kernel/include/comus/procs.h
+++ b/kernel/include/comus/procs.h
@@ -13,6 +13,7 @@
#include <comus/limits.h>
#include <comus/memory.h>
#include <comus/syscalls.h>
+#include <comus/fs.h>
#include <lib.h>
#include <elf.h>
@@ -59,6 +60,9 @@ struct pcb {
char *heap_start;
size_t heap_len;
+ // open files
+ struct file *open_files[N_OPEN_FILES];
+
// elf metadata
Elf64_Ehdr elf_header;
Elf64_Phdr elf_segments[N_ELF_SEGMENTS];