Interrupt

глагол 1) обрывать, прерывать, внезапно прекращать Например: Do not let anything which has passed today interrupt our friendship. — Не давай тому, что произошло сегодня, положить конец нашей дружбе. Синоним(ы): sever, cut 2) прерываться, делать паузу 3) прерывать; вмешиваться (в разговор) 4) отрывать (от чего-либо), мешать, препятствовать Например: I could not bear being interrupted in anything I was about. — Я не мог вынести того, что мне мешали в любом деле, которым я собирался заниматься. Синоним(ы): hinder, prevent 5) загораживать обзор, блокировать вид

Большой англо-русский словарь

Interrupt

= INT прерывание механизм, реализуемый в виде специальных сигналов и микропрограмм, позволяющий процессору реагировать на события внешнего мира или особые программные состояния. Можно сказать, что прерывание - асинхронное внешнее или внутреннее событие, требующее обслуживания. Прерывание вызывает прекращение обработки текущей программы, сохранение состояния процессора и передачу управления специальной программе обработки конкретного вида прерывания. По завершении обработки управление обычно возвращается прерванной программе. Существуют различные классы прерываний: аппаратные (hardware interrupt), программные (software interrupt), ввода-вывода (от дисководов, клавиатуры, последовательного порта, мыши и т. д.) и от таймера. Различают прерывания маскируемые (maskable interrupt) и немаскируемые (nonmaskable interrupt), в зависимости от того, может ли быть отложено обслуживание конкретного вида прерываний. Например, нельзя маскировать прерывания по исчезновению питания и сбросу системы. Для ввода сигнала прерывания в процессор у него имеется один или несколько специализированных выводов (ножек), кроме того, схемы, формирующие сигнал прерывания могут выставлять на шине данных номер прерывания. Конкретная реализация системы прерываний - составная часть архитектуры процессора Смотри также: context switching, external interrupt, idle interrupt, interrupt mask, interrupt vector, IRET, IRQ

Англо-русский словарь компьютерных терминов

Interrupt

1) прерывание; прерывать(ся) 2) сигнал прерывания

Англо-русский научно-технический словарь

Interrupt

1) прерывание; прерывать(ся) 2) сигнал прерывания

Англо-русский политехнический словарь

Interrupt

I. verb Etymology: Middle English, from Latin interruptus, past participle of interrumpere, from inter- + rumpere to break — more at reave transitive verb 1. to stop or hinder by breaking in Example: interrupted the speaker with frequent questions 2. to break the uniformity or continuity of Example: a hot spell occasionally interrupted by a period of cool weather intransitive verb to break in upon an action; especially to break in with questions or remarks while another is speaking • interruptible adjectiveinterruption nouninterruptive adverb II. noun a feature of a computer that permits the temporary interruption of one activity (as the execution of a program) in order to perform another; also the interruption itself

Merriam-Webster's Collegiate Dictionary

Interrupt

1. An asynchronous event that suspends normal processing and temporarily diverts the flow of control through an "interrupt handler" routine. Interrupts may be caused by both hardware (I/O, timer, machine check) and software (supervisor, system call or trap instruction). In general the computer responds to an interrupt by storing the information about the current state of the running program; storing information to identify the source of the interrupt; and invoking a first-level interrupt handler. This is usually a kernel level privileged process that can discover the precise cause of the interrupt (e.g. if several devices share one interrupt) and what must be done to keep operating system tables (such as the process table) updated. This first-level handler may then call another handler, e.g. one associated with the particular device which generated the interrupt. 2. Under MS-DOS, nearly synonymous with "system call" because the OS and BIOS routines are both called using the INT instruction (see interrupt list) and because programmers so often have to bypass the operating system (going directly to a BIOS interrupt) to get reasonable performance.

Free Online Dictionary of Computing