distinguish between interrupts and exceptions?

Answer Posted / sairam kulkarni

Interrupts and exceptions both alter the program flow. The
difference
between the two is that interrupts are used to handle
external events
(serial ports, keyboard) and exceptions are used to handle
instruction
faults, (division by zero, undefined opcode).

Interrupts are handled by the processor after finishing the
current
instruction. If it finds a signal on its interrupt pin, it
will look up
the address of the interrupt handler in the interrupt table
and pass
that routine control. After returning from the interrupt
handler
routine, it will resume program execution at the
instruction after the
interrupted instruction.

Exceptions on the other hand are divided into three kinds.
These are
Faults, Traps and Aborts. Faults are detected and serviced
by the
processor before the faulting instructions. Traps are
serviced after
the instruction causing the trap. User defined interrupts
go into this
category and can be said to be traps; this includes the MS-
DOS INT 21h
software interrupt, for example. Aborts are used only to
signal severe
system problems, when operation is no longer possible.

Is This Answer Correct ?    52 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is used to type command?

554


What are the differences among a system call, a library function, and a unix command?

577


What is the comma to show the space allocation of files?

564


How do I run a whois command?

613


Who command in unix?

584






How can you see the command line history?

595


What is the difference between cat command and more command?

607


What do know about tee command and its usage?

602


What is sed awk grep?

614


Can you explain a little bit about command substitution?

623


Why is awk called awk?

583


What does awk stand for?

621


Enlist some filename manipulation commands in unix.

562


Which command is used to delete all files in the current directory and all its sub-directories?

679


What is the use of tee command?

580