aboutsummaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/proc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h
index b10ee41..5925be8 100644
--- a/sys/include/sys/proc.h
+++ b/sys/include/sys/proc.h
@@ -39,6 +39,7 @@
#include <sys/exec.h>
#include <sys/filedesc.h>
#include <sys/signal.h>
+#include <sys/vnode.h>
#if defined(_KERNEL)
#include <machine/frame.h>
#include <machine/pcb.h>
@@ -56,6 +57,8 @@ struct proc {
struct exec_prog exec;
struct ksiginfo *ksig_list[PROC_SIGMAX];
struct filedesc *fds[PROC_MAX_FILEDES];
+ struct vcache *vcache;
+ struct spinlock vcache_lock;
struct trapframe tf;
struct pcb pcb;
size_t priority;