JUST WRITE

Interrupt-Based System 본문

OS

Interrupt-Based System

천재보단범재 2022. 1. 4. 19:55
이 글은 KOCW 강좌 중 경성대학교 양희재 교수님의 '운영체제' 강의를 정리한 글입니다.

 

Interrupt-Based System

Interrupt-Based System

현대 운영체제는 Interrupt-Based System이다.

컴퓨터가 실행하는 동안 수많은 Event(키보드 타이핑, 마우스 클릭 등)들이 발생한다.

컴퓨터는 Interrupt를 통해 이러한 Event들을 알 수 있다.

Interrupt가 발생하면 운영체제는 하던 일을 멈추고 ISR(Interrupt Service Routine)을 수행한다.

ISR이 완료되면 Process가 재개된다.

Interrupt 종류

  • Hardware Interrupt -> Hardware에서 발생한 Interrupt이다.
  • Software Interrupt
    • Software에서 발생한 Interrupt
    • User Program 실행되면서 발생
  • Internal Interrupt
    • Program 수행 중 예외 발생 (ex. Divided by Zero)

출처 : http://csmylov.blogspot.com/2017/08/interrupt.html

 

 

 

728x90
반응형

'OS' 카테고리의 다른 글

CPU Scheduling  (0) 2022.01.11
Process  (0) 2022.01.09
OS Service  (0) 2022.01.06
Dual Mode and Protection  (0) 2022.01.05
What is OS?  (0) 2021.11.05
Comments