From 272aebf9ff06cbacde0df2f7010c93cbd24ac25e Mon Sep 17 00:00:00 2001 From: Unagi_zoso Date: Tue, 2 Sep 2025 14:10:24 +0900 Subject: [PATCH] 2025-09-02 [Computer Science] Operating System Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 오탈자 수정 건입니다. Hightest -> Highest (중간 t 제거) --- Computer Science/Operating System/CPU Scheduling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Computer Science/Operating System/CPU Scheduling.md b/Computer Science/Operating System/CPU Scheduling.md index cee0b4cc..ebb59952 100644 --- a/Computer Science/Operating System/CPU Scheduling.md +++ b/Computer Science/Operating System/CPU Scheduling.md @@ -46,7 +46,7 @@ 2. SJF (Shortest Job First) - 수행시간이 가장 짧다고 판단되는 작업을 먼저 수행 - FCFS 보다 평균 대기 시간 감소, 짧은 작업에 유리 - 3. HRN (Hightest Response-ratio Next) + 3. HRN (Highest Response-ratio Next) - 우선순위를 계산하여 점유 불평등을 보완한 방법(SJF의 단점 보완) - 우선순위 = (대기시간 + 실행시간) / (실행시간)