Download presentation
Presentation is loading. Please wait.
Published byTheodora Lester Modified over 9 years ago
1
Interrupts Signal that causes the CPU to alter its normal flow on instruction execution ◦ frees CPU from waiting for events ◦ provides control for external input Examples ◦ unexpected input ◦ abnormal situation ◦ illegal instructions ◦ multitasking, multiprocessing http://sites.google.com/site/computing9691/ Slide 1
2
Interrupt Terminology In understanding the concept of interrupts, there are a few commonly used terms:- ◦ Interrupt lines (hardware) ◦ Interrupt request ◦ Interrupt handlers Program that services the interrupt Also known as an interrupt routine ◦ Process Control Block (PCB) Located in a part of memory known as the stack area All registers of a program are saved here before control is transferred to the interrupt handler http://sites.google.com/site/computing9691/ Slid e 2
3
Servicing an Interrupt When an interrupt occurs, it must be serviced. Servicing the interrupt involves:- ◦ suspending the program in progress. ◦ save pertinent information including last instruction executed and data values in registers in the PCB (process control block). ◦ branch to the interrupt handler. http://sites.google.com/site/computing9691/ Slid e 3
4
Servicing an Interrupt http://sites.google.com/site/computing9691/ Slid e 4
5
Use of Interrupts Interrupts are such powerful mechanisms that they are used widely, such as:- ◦ Notifying that an external event has occurred real-time or time-sensitive ◦ Signalling completion printer ready or buffer full ◦ Allocating CPU time time sharing ◦ Indicating abnormal event (CPU originates for notification and recovery) illegal operation, hardware error ◦ Software interrupts http://sites.google.com/site/computing9691/ Slid e 5
6
Multiple Interrupts Identifying devices ◦ Polling (checking for input in rotation) ◦ Vectored interrupts (include address of interrupting device) Interrupt priorities ◦ Loss of data vs. task completion Maskable (disabled) interrupts http://sites.google.com/site/computing9691/ Slid e 6
7
Vectored Interrupts http://sites.google.com/site/computing9691/ Slid e 7
8
Polled Interrupts http://sites.google.com/site/computing9691/ Slid e 8
9
Multiple Interrupts Example http://sites.google.com/site/computing9691/ Slid e 9
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.