中英
interrupts
/ ˌɪntəˈrʌpts /
/ ˌɪntəˈrʌpts /
  • 简明
  • 柯林斯
  • n.中断(interrupt 的复数)
  • v.打断(interrupt 的三单形式)
  • 高中/CET4/CET6/考研/IELTS/TOEFL/GRE/SAT/商务英语/
  • 网络释义
  • 专业释义
  • 英英释义
  • 1

     中断

    论文:对我国法务会计建设的思考-中大网校论文网 关键词: C语言,中断中断向量表,DSP。 [gap=311]Key Words C language, Interrupts, Interrupt vector table, DSP.

  • 2

     中断的使用

    ... Filesystems 支持的文件系统 Interrupts 中断的使用 Ioports I/O端口的使用 ...

  • 3

     硬件中断

    一种是硬件中断(Interrupts),一种是软件中断(Exceptions),又称为异常。

  • 4

     演示内部中断功能

    ... ang_demo 演示四种图形库中字符串的显示 源码 interrupts 演示内部中断功能 源码 i2s_speex_enc 演示I2S Record 和 Playback 功能(speex编解码) 源码 ...

短语
查看更多
  • 双语例句
  • 原声例句
  • 权威例句
  • 1
    "You have missed a bit," interrupts Jane, who now knows the story better than her mother.
    “你漏掉了一点。”简打断道,她现在比她母亲更了解这个故事。
  • 2
    The narrative interrupts here and focuses on the setting where Nutmeg is telling the narrator this story.
    讲述在此中断,集中到肉豆蔻给讲述者的故事上来。
  • 3
    In modern agriculture, mineral depletion of soils is a major concern, since harvesting crops interrupts the recycling of nutrients back to the soil.
    在现代农业中,土壤的矿物损耗是一个主要的问题,因为收割农作物会中断养分的循环,使其无法重新回到土壤中。
查看更多
  • 词典短语
查看更多
  • 百科
  • Interrupts

    In systems programming, an interrupt is a signal to the processor emitted by hardware or software indicating an event that needs immediate attention. An interrupt alerts the processor to a high-priority condition requiring the interruption of the current code the processor is executing. The processor responds by suspending its current activities, saving its state, and executing a function called an interrupt handler (or an interrupt service routine, ISR) to deal with the event. This interruption is temporary, and, after the interrupt handler finishes, the processor resumes normal activities. There are two types of interrupts: hardware interrupts and software interrupts.Hardware interrupts are used by devices to communicate that they require attention from the operating system. Internally, hardware interrupts are implemented using electronic alerting signals that are sent to the processor from an external device, which is either a part of the computer itself, such as a disk controller, or an external peripheral. For example, pressing a key on the keyboard or moving the mouse triggers hardware interrupts that cause the processor to read the keystroke or mouse position. Unlike the software type (described below), hardware interrupts are asynchronous and can occur in the middle of instruction execution, requiring additional care in programming. The act of initiating a hardware interrupt is referred to as an interrupt request (IRQ).A software interrupt is caused either by an exceptional condition in the processor itself, or a special instruction in the instruction set which causes an interrupt when it is executed. The former is often called a trap or exception and is used for errors or events occurring during program execution that are exceptional enough that they cannot be handled within the program itself. For example, if the processor's arithmetic logic unit is commanded to divide a number by zero, this impossible demand will cause a divide-by-zero exception, perhaps causing the computer to abandon the calculation or display an error message. Software interrupt instructions function similarly to subroutine calls and are used for a variety of purposes, such as to request services from low-level system software such as device drivers. For example, computers often use software interrupt instructions to communicate with the disk controller to request data be read or written to the disk.Each interrupt has its own interrupt handler. The number of hardware interrupts is limited by the number of interrupt request (IRQ) lines to the processor, but there may be hundreds of different software interrupts. Interrupts are a commonly used technique for computer multitasking, especially in real-time computing. Such a system is said to be interrupt-driven.

查看更多