We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73540bd commit a86d2f5Copy full SHA for a86d2f5
src/main/java/io/concurrency/chapter01/exam02/ContextSwitchExample.java
@@ -1,5 +1,11 @@
1
package io.concurrency.chapter01.exam02;
2
-
+/*
3
+* 컨텍스트 스위칭
4
+*
5
+* 프로세스 혹은 스레드 간의 작업 도중에 I/O 혹은 오버헤드가 발생하는 경우, 다른 작업과의 변환을 진행한다.
6
7
+* 해당 과정에서 기존 PCB 혹은 TCB 정보를 삭제하고 캐시를 비운 후, 새로운 PCB 혹은 TCB 정보로 변경된다.
8
+* */
9
public class ContextSwitchExample {
10
public static void main(String[] args) {
11
0 commit comments