From e88a8c4c379d721e9901752d440a05295087da11 Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 19 Jun 2012 01:44:56 +0200 Subject: implement page table and use it for lazy loading of segments --- threads/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'threads/thread.c') diff --git a/threads/thread.c b/threads/thread.c index cf404b6..14889ca 100644 --- a/threads/thread.c +++ b/threads/thread.c @@ -73,7 +73,7 @@ static tid_t allocate_tid (void); /* comparison function for our descending ordered ready list. */ bool -thread_priority_cmp_greater(const struct list_elem *a, const struct list_elem *b, +thread_priority_cmp_greater (const struct list_elem *a, const struct list_elem *b, void *AUX UNUSED) { const struct thread *t1 = list_entry (a, struct thread, elem); -- cgit v1.2.3