说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 中断与中断处理
1)  Interrupts and Interrupt Handling
中断与中断处理
2)  interrupt handling
中断处理
1.
In the project of the network sleep monitoring on Microsoft Window 98,we design a virtual device driver (VxD) forphysiological signals acquisition card with VTOOLSD, in which we have accomplished IRQ virtualization, hook interrupt handling program, real-time processing of hardwave interruption and collection of ECG, EEG and other medical signals.
基于Microsoft Windows98平台的网络睡眼监护系统,利用VTOOLSD开发生理信号采集卡虚拟设备驱动程序(VxD) 在VxD中实现IRQ的虚拟化,钩挂中断处理程序,实时处理硬件中断,采集心电、脑电等多路生理信号。
2.
This paper discussed several problems which are needed to be raveled in μC/OS-II transplant process on ARM7;introduced the general interrupt handling process and method;presented the transplant μC/OS-II partial codes on the chip of LPC2000 series bashed on ARM7.
讨论了μC/OS-II在ARM7上移植过程中中断处理需要注意的几个问题,介绍了通用中断处理的过程和一般方法,并给出了在基于ARM7内核的LPC2000系列芯片上移植μC/OS-II部分代码。
3.
After presenting the common procedure of internal exception and external interrupt handling on processor,this paper analyzes exception processing and focuses on the mechanism of external interrupt handling in RTOS VxWorks,illustrates the implementation of interrupt management and demultiplexing with AT91RM9200 and MPC7410 processor.
针对实时系统中的中断处理的至关重要性,说明了微处理器的内部异常和外部中断的工作机理,阐述了实时操作系统VxWorks中的异常处理的过程,重点分析了在VxWorks中外部中断处理机制,并以AT91RM9200和MPC7410为例说明了VxWorks中断处理和中断复用的具体实现。
3)  interrupt processing
中断处理
1.
This paper introduces the development of driver,architecture of driver and the interrupt processing in Windows CE.
该文介绍了Windows CE下的驱动程序的结构、开发过程及Windows CE的中断处理过程,提出流接口和分层相结合的驱动程序设计方案,给出Windows CE下串口驱动的具体开发过程及串口驱动的中断处理过程。
2.
Because of the strict requirement of the real time property of interrupt response in a real time operation system, the authors propose that the interrupt response is divided into interrupt processing and interrupt servicing.
针对实时操作系统中要求中断响应实时性强的特点 ,提出了将中断响应分为中断处理和中断服务两部分 ,并且根据这种中断响应机制设计了多级中断服务请求队列 ,对临界资源的保护进行了探讨 。
4)  Interrupt process
中断处理
1.
Interrupt mechanism is the foundation of the Linux operating system,it supplies condition for CPU concurrent operation with external device,run multitask and communication in processors,this paper introduce interrupt concept and interrupt configuration,and then descriptor interrupt manage,Finally, discuss Linux system interrupt process.
本文首先介绍了中断概念和中断结构,其后描述了中断管理,最后讨论了Linux系统中断处理。
5)  processing interrupt
处理中断
6)  Interruption Processor
中断处理器
补充资料:中断


中断
interrupt

  zhongduan中断(interruPt)计算机在执行程序过程中,当遇到急需处理的事件时,暂停当前正在运行的程序,转去执行有关服务程序,处理完后自动返回原程序,这个过程称为中断。 中断可分为内中断和外中断。内中断是由计算机内部原因引起的中断,如溢出中断、非法操作码中断、地址越界中断等;外中断指外部事件引起的中断,如输入输出中断、电源故障中断、实时钟中断等。外中断又叫强迫中断。在内中断中,由程序中特设的指令引起的中断,又称为软中断。 要求中断的请求可按其轻重缓急分级,并赋予一定的优先权,称为中断优先级。当有多个中断请求时,中断系统按中断优先级进行排队。排队原则是:级别高的优先响应。若在处理低级中断过程中又有高级中断申请中断,则高级中断可以打断低级中断处理,转去处理高级中断,等处理完高级中断后再返回处理原来的低级中断,称为中断嵌套。为了增加中断排队的灵活性,还可用程序的方法在某段时间中屏蔽某些中断请求,以改变中断响应顺序。有些中断请求是不能屏蔽的,如电源一旦掉电,中央处理器应立即响应,其优先级最高,称为非屏蔽中断。 中央处理器在响应中断后转人具体的中断服务程序之前必须保存其现场,包括程序断点、程序状态字和运算器中通用寄存器内容,以保证中断服务后能够恢复现场返回原来的程序。在保存现场和恢复现场的阶段,不允许任何新的或更高级的中断打断。系统采用“关中断”的办法禁止响应任何中断,等到保存现场或恢复现场完毕,再“开中断”。中断处理过程包括保存现场、恢复现场和具体的服务处理,都是通过程序实现的,因此这种方式又叫程序中断方式。 为了提高响应中断的速度,通常把所有中断服务程序的入口地址(或称中断向量)汇集为中断向量表。当中央处理器响应中断时,从中断向量表中直接得到相应的人口地址,并从该地址开始执行中断服务程序。 中断在现代计算机系统中是一种非常重要的技术,输人输出设备和主机交换数据、分时操作、实时系统、多处理机系统、计算机网络和分布式计算机系统中都要用到这种技术。
  
说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条