answersLogoWhite

0


Best Answer

program interrupt is transfer program control from currently running program to a service program depends on internal or external generated request

after execution of service program, program control will be returned to original program

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

An interrupt is a signal from a device attached to a computer or from a program within the computer that causes the main program that operates the computer (the operating system ) to stop and figure out what to do next. Almost all personal (or larger) computers today are interrupt-driven - that is, they start down the list of computer instruction s in one program (perhaps an application such as a word processor) and keep running the instructions until either (A) they can't go any further or (B) an interrupt signal is sensed. After the interrupt signal is sensed, the computer either resumes running the program it was running or begins running another program.

Basically, a single computer can perform only one computer instruction at a time. But, because it can be interrupted, it can take turns in which programs or sets of instructions that it performs. This is known as multitasking . It allows the user to do a number of different things at the same time. The computer simply takes turns managing the programs that the user effectively starts. Of course, the computer operates at speeds that make it seem as though all of the user's tasks are being performed at the same time. (The computer's operating system is good at using little pauses in operations and user think time to work on other programs.)

An operating system usually has some code that is called an interrupt handler . The interrupt handler prioritizes the interrupts and saves them in a queue if more than one is waiting to be handled. The operating system has another little program, sometimes called a scheduler , that figures out which program to give control to next.

In general, there are hardware interrupts and software interrupts. A hardware interrupt occurs, for example, when an I/O operation is completed such as reading some data into the computer from a tape drive. A software interrupt occurs when an application program terminates or requests certain services from the operating system. In a personal computer, a hardware interrupt request ( IRQ ) has a value associated with it that associates it with a particular device.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

An interrupt is a signal sent by a piece of hardware or software to another piece of hardware or software.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

program interrupt can be discribed as a transfer of program control from a currently running program to another service program on a request genrated externally.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is interrupt in architecture?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Traditional IBM mainframes recognize different interrupt types?

Yes, from first versions of the IBM 360 architecture there are different interrupt types that put the system into Supervisor mode and invoke the operating system to analyze the interrupt type


What is the full form of ISR IN Computer system architecture?

full form of the ISR is interrupt service routine.


Why there is a need for disabling interrupts in 8085?

Interrupt are automatically disabled on interrupt entry (except for TRAP, which is non-maskable) so that interrupts do not, by default, nest. You would also disable enterrupts surrounding a critical section of code that, perhaps, manipulated an interrupt register. It is possible to re-enable interrupts during an interrupt service routine. Typically, you would have a hierarchy, such as RST7.5, then RST 6.5, then RST 5.5. Initially, at interrupt entry, all interrupts are disabled. You could then manipulate the interrupt mask using the RIM and SIM instructions and enable further interrupts, allowing a nested architecture. At interrupt exit, then, you would disable interrupts, reset the mask, enable interrupts, and return from interrupt.


What part of speech is interrupt?

"Interrupt" is a verb.


How many pages does Realtime Interrupt have?

"Realtime Interrupt" does not have a fixed number of pages, as it is an abstract concept related to computer systems and programming. The term refers to a mechanism that allows a processor to temporarily halt its current operation to service a specific event or request in real time. The implementation and details of real-time interrupts can vary depending on the specific system architecture and requirements.


What is the use of interrupt vector?

An interrupt vector is the memory address of an interrupt handler, or an index into an array called an interrupt vector table or dispatch table. Interrupt vector tables contain the memory addresses of interrupt handlers. When an interrupt is generated, the processor saves its execution state via a context switch, and begins execution of the interrupt handler at the interrupt vector.


What is a sentence with the word interrupt?

"You should not interrupt class," the teacher scolded the boy.


Where is interrupt handler and interrupt vector?

In the 8086/8088, the interrupt vector table is the first 1024 bytes of memory. In the 8085, the interrupt vector table is the first 64 bytes of memory if using the RST form of interrupt, otherwise the interrupt vector is provided by the interrupting device, usually in the form of a CALL instruction. The interrupt handler is wherever the interrupt vector points to.


What is the Prefix of interrupt?

the prefix of interrupt is in


What is the prefix for interrupt?

The prefix for interrupt is "inter-".


When an interrupt is serviced then what happens if another interrupt is raised?

It depends on the CPU architecture. Most modern CPUs support several levels of interrupts ranging from high priority to low. If the first interrupt that occurred was a high priority, then a lower priority one occurs, the high priority will continue to execute until it is done, then the the CPU will immediately jump to the lower one. Conversely, if the lower priority interrupt occurred first, it will be interrupted until the higher interrupt is serviced. For 80x86 series processors, do not confuse priority with vector. You may remember in the older days interrupt 13 belonging to the hard drive, and interrupts 3 and 4 being part of the serial port. This is not a function of the CPU but of the interrupt controller. The function of this device is beyond the scope of my answer here. 80x86 has 2 interrupt sources: maskable and non-maksable. Think of the non-maskable as the higher priority and the maskable as the lower. Most peripherals use the maskable interrupt line. Although a few, often functions of the BIOS, Fault, or Paged/Protected mode make use of the non-masked interrupt.


What are interrupters?

An interrupt is a hardware-generated change of flow within the system. An interrupt handler deals with the cause of the interrupt. Control is then returned to the interrupted context An interrupt is a hardware-generated change of flow within the system. An interrupt handler deals with the cause of the interrupt. Control is then returned to the interrupted context