summaryrefslogtreecommitdiffstats
path: root/threads/thread.h
diff options
context:
space:
mode:
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 8bc6512..8cfafe6 100644
--- a/threads/thread.h
+++ b/threads/thread.h
@@ -110,7 +110,7 @@ struct thread
110 110
111 int is_donated; /* flag if threads priority has been donated by another thread */ 111 int is_donated; /* flag if threads priority has been donated by another thread */
112 int saved_priority; /* saved base priority in case of priority dontation */ 112 int saved_priority; /* saved base priority in case of priority dontation */
113 struct list locks; /* list of locks we currently hold */ 113 struct list locks; /* list of locks the thread currently holds */
114 }; 114 };
115 115
116/* If false (default), use round-robin scheduler. 116/* If false (default), use round-robin scheduler.