[Pintos Project] 2.2.3 Priority Scheduling requirement 번역
2.2.3 Priority Scheduling Implement priority scheduling in Pintos. When a thread is added to the ready list that has a higher priority than the currently running thread, the current thread should immediately yield the processor to the new thread. Similarly, when threads are waiting for a lock, semaphore, or condition variable, the highest priority waiting thread should be awakened first. A threa..