목록Computer Science (58)
엔지니어가 되고 싶은 공돌이
08. Context Switch & State queue
8. 1 Context Switch - 한 프로세스에서 다른 프로세스로 CPU 사용을 전환하는 행위 - Overhead가 따른다. - Context Switch overhead is dependent on hardware support - 100s or 1000s of switches/s typically 8. 2 State queue - OS는 모든 프로세스 상태를 PCB에 저장하고 이 구조를 큐로 관리한다. - queue의 종류는 매우 다양 - 프로세스가 상태를 변경함에 따라 PCB가 queue를 이동한다. - PCB는 data structures 이다. - Dynamically allocated inside OS memory - Process is created: OS는 PCB를 할당, 초기화, q..
Computer Science/Operating System
2020. 2. 22. 23:09