external interrupt - определение. Что такое external interrupt
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое external interrupt - определение

SIGNAL TO THE PROCESSOR EMITTED BY HARDWARE OR SOFTWARE INDICATING AN EVENT THAT NEEDS IMMEDIATE ATTENTION
Hardware interrupt; Interrupts; Software interrupt; Software Interrupt; Spurious Interrupt; Interrupt mask; Maskable interrupt; Masked interrupt; Level triggered interrupt; Edge triggered interrupt; Maskable interrupts; Interupt; Spurious interrupt; Trap (computing); Fault (computing); Interrupt line; Maskable Interrupt; Kernel trap; Interrupted; Interrupting; Interrupt handling; OS Trap; Shared interrupt; Interrupt (computing); IRQ affinity; Receive packet steering; Receive flow steering; Interrupt mechanism; Computer interrupt; Computer Interrupt
  • thumb
  • Interrupt sources and processor handling
Найдено результатов: 603
Interrupt handler         
COMPUTING FUNCTION TRIGGERED BY AN INTERRUPT
Interrupt service routine; Interrupt routines; Interrupt Handler; Interrupt Service Routine; FLIH; SLIH
In computer systems programming, an interrupt handler, also known as an interrupt service routine or ISR, is a special block of code associated with a specific interrupt condition. Interrupt handlers are initiated by hardware interrupts, software interrupt instructions, or software exceptions, and are used for implementing device drivers or transitions between protected modes of operation, such as system calls.
interrupt handler         
COMPUTING FUNCTION TRIGGERED BY AN INTERRUPT
Interrupt service routine; Interrupt routines; Interrupt Handler; Interrupt Service Routine; FLIH; SLIH
<software> A routine which is executed when an interrupt occurs. Interrupt handlers typically deal with low-level events in the hardware of a computer system such as a character arriving at a serial port or a tick of a real-time clock. Special care is required when writing an interrupt handler to ensure that either the interrupt which triggered the handler's execution is masked out (inhibitted) until the handler exits, or the handler is re-entrant so that multiple concurrent invocations will not interfere with each other. If interrupts are masked then the handler must execute as quickly as possible so that important events are not missed. This is often arranged by splitting the processing associated with the event into "upper" and "lower" halves. The lower part is the interrupt handler which masks out further interrupts as required, checks that the appropriate event has occurred (this may be necessary if several events share the same interrupt), services the interrupt, e.g. by reading a character from a UART and writing it to a queue, and re-enabling interrupts. The upper half executes as part of a user process. It waits until the interrupt handler has run. Normally the {operating system} is responsible for reactivating a process which is waiting for some low-level event. It detects this by a shared flag or by inspecting a shared queue or by some other synchronisation mechanism. It is important that the upper and lower halves do not interfere if an interrupt occurs during the execution of upper half code. This is usually ensured by disabling interrupts during critical sections of code such as removing a character from a queue. (2002-07-24)
Raster interrupt         
COMPUTER INTERRUPT SIGNAL
Horizontal blank interrupt; Display list interrupt
A raster interrupt (also called a horizontal blank interrupt) is an interrupt signal in a legacy computer system which is used for display timing. It is usually, though not always, generated by a system's graphics chip as the scan lines of a frame are being readied to send to the monitor for display.
Interrupt descriptor table         
MEMORY STRUCTURE OF X86 MICROPROCESSORS
Interrupt Descriptor Table
The Interrupt Descriptor Table (IDT) is a data structure used by the x86 architecture to implement an interrupt vector table. The IDT is used by the processor to determine the correct response to interrupts and exceptions.
interrupt         
(interrupts, interrupting, interrupted)
1.
If you interrupt someone who is speaking, you say or do something that causes them to stop.
Turkin tapped him on the shoulder. 'Sorry to interrupt, Colonel.'...
He tried to speak, but she interrupted him.
VERB: V, V n
interruption (interruptions)
The sudden interruption stopped Beryl in mid-flow.
N-VAR
2.
If someone or something interrupts a process or activity, they stop it for a period of time.
He has rightly interrupted his holiday in Spain to return to London...
VERB: V n
interruption
...interruptions in the supply of food and fuel...
= disruption
N-VAR: oft N in/to n
3.
If something interrupts a line, surface, or view, it stops it from being continuous or makes it look irregular.
Taller plants interrupt the views from the house.
VERB: V n
software interrupt         
An interrupt caused by a specific machine language operation code (e.g. the Motorola 68000's TRAP, the {IBM System/390}'s SVC or the ARM's SWI) rather than by a hardware event. As with a hardware interrupt, this causes the processor to store the current state, store identifying information about the particular interrupt, and pass control to a first level interrupt handler. A trap is similar except that it is caused by an unexpected software condition or error (e.g. divide by zero, undefined instruction) rather than a deliberate instruction. (1995-02-14)
interrupt         
v. a.
1.
Disturb, stop, break, hinder, cause to delay, cause to cease, interfere with, break in upon, hinder from proceeding.
2.
Separate, divide, break, disconnect, disunite, disjoin, sunder, dissever, sever, cut, dissolve.
3.
Intermit, suspend, discontinue, break off, leave off, cease for a time.
interrupts         
Interrupting         
·p.pr. & ·vb.n. of Interrupt.
External sorting         
CLASS OF SORTING ALGORITHMS THAT CAN HANDLE MASSIVE AMOUNTS OF DATA
External sort; External merge; External Sorting; On-disk merge; On disk merge
External sorting is a class of sorting algorithms that can handle massive amounts of data. External sorting is required when the data being sorted do not fit into the main memory of a computing device (usually RAM) and instead they must reside in the slower external memory, usually a disk drive.

Википедия

Interrupt

In digital computers, an interrupt (sometimes referred to as a trap) is a request for the processor to interrupt currently executing code (when permitted), so that the event can be processed in a timely manner. If the request is accepted, the processor will suspend its current activities, save its state, and execute a function called an interrupt handler (or an interrupt service routine, ISR) to deal with the event. This interruption is often temporary, allowing the software to resume normal activities after the interrupt handler finishes, although the interrupt could instead indicate a fatal error.

Interrupts are commonly used by hardware devices to indicate electronic or physical state changes that require time-sensitive attention. Interrupts are also commonly used to implement computer multitasking, especially in real-time computing. Systems that use interrupts in these ways are said to be interrupt-driven.