summaryrefslogtreecommitdiffstats
path: root/userprog/process.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2012-06-20 23:33:23 +0200
committermanuel <manuel@mausz.at>2012-06-20 23:33:23 +0200
commitf2bb044e9e715f05db8df5950ca704976b98174a (patch)
tree4bb716fdde87ad38a0c83f5ef18d5436dbf85648 /userprog/process.h
parentabd273ce0a9ae9267f8b0a144ea9b56d8912f9b5 (diff)
downloadprogos-f2bb044e9e715f05db8df5950ca704976b98174a.tar.gz
progos-f2bb044e9e715f05db8df5950ca704976b98174a.tar.bz2
progos-f2bb044e9e715f05db8df5950ca704976b98174a.zip
add stub for mmap/munmap + fix build errors in subdirectories
Diffstat (limited to 'userprog/process.h')
-rw-r--r--userprog/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/userprog/process.h b/userprog/process.h
index ccb94cb..5fcd80e 100644
--- a/userprog/process.h
+++ b/userprog/process.h
@@ -3,7 +3,7 @@
3 3
4#include "threads/thread.h" 4#include "threads/thread.h"
5 5
6#define STACK_SIZE (1 << 23) /* 8MB maxiumum stack size */ 6#define STACK_SIZE (1 << 23) /* 8MB maximum stack size */
7 7
8/* In the current implementation, the capacity is fixed to 1024 (PGSIZE/4) */ 8/* In the current implementation, the capacity is fixed to 1024 (PGSIZE/4) */
9struct fd_table { 9struct fd_table {