page-merge 해결하기threads/synch.c에서 lock_acquire를 다음과 같이 수정했다.voidlock_acquire (struct lock *lock) { struct thread *curr = thread_current(); if (!thread_mlfqs && lock->holder != NULL) { curr->wait_on_lock = lock; list_insert_ordered(&lock->holder->donations, &curr->d_elem, cmp_priority_donate, NULL); struct thread *t = thread_current (); for (int i = 0; i wait_on_lock) if (t->wait_on_lock ..