summaryrefslogtreecommitdiffstats
path: root/threads/thread.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2012-06-19 23:31:28 +0200
committermanuel <manuel@mausz.at>2012-06-19 23:31:28 +0200
commitabd273ce0a9ae9267f8b0a144ea9b56d8912f9b5 (patch)
tree15bf5622a6bf7665dfb53a3f557dfaa246f108aa /threads/thread.h
parente88a8c4c379d721e9901752d440a05295087da11 (diff)
downloadprogos-abd273ce0a9ae9267f8b0a144ea9b56d8912f9b5.tar.gz
progos-abd273ce0a9ae9267f8b0a144ea9b56d8912f9b5.tar.bz2
progos-abd273ce0a9ae9267f8b0a144ea9b56d8912f9b5.zip
add dynamic stack growing
Diffstat (limited to 'threads/thread.h')
-rw-r--r--threads/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads/thread.h b/threads/thread.h
index 293d14f..ed591f4 100644
--- a/threads/thread.h
+++ b/threads/thread.h
@@ -114,7 +114,7 @@ struct thread
114 struct list locks; /* list of locks the thread currently holds */ 114 struct list locks; /* list of locks the thread currently holds */
115 struct lock *blocked_lock; /* the lock the thread currently tries to acquire (but hasn't yet) */ 115 struct lock *blocked_lock; /* the lock the thread currently tries to acquire (but hasn't yet) */
116 116
117 struct hash page_table; 117 struct hash page_table; /* page table of thread */
118 }; 118 };
119 119
120/* If false (default), use round-robin scheduler. 120/* If false (default), use round-robin scheduler.