From abd273ce0a9ae9267f8b0a144ea9b56d8912f9b5 Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 19 Jun 2012 23:31:28 +0200 Subject: add dynamic stack growing --- threads/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threads/thread.h') 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 struct list locks; /* list of locks the thread currently holds */ struct lock *blocked_lock; /* the lock the thread currently tries to acquire (but hasn't yet) */ - struct hash page_table; + struct hash page_table; /* page table of thread */ }; /* If false (default), use round-robin scheduler. -- cgit v1.2.3