zoukankan      html  css  js  c++  java
  • Difference between software interrupt, exception, trap

    Definition and difference between Hardware interrupt, Software Interrupt, Exception, Trap and Signals?

    Answer:

    Interrupts can be categorized into two groups which are asynchronous interrupts (aka interrupt, hardware interrupt) and synchronous interrupts (aka exception). The former may arrive anytime, typically IO interrupts, the latter may only arrive after the execution of an instruction, for example when the cpu try to divide a number by 0 or a page fault. So that’s the difference between interrupts and exception.

    Exception includes trap, fault, abort.

    A trap is a kind of exceptions, whose main purpose is for debugging (eg. notify the debugger that an instruction has been reached).

    A software interrupt (aka Programmed Exceptions) occur at the request of the programmer. They are used to implement system calls. Software interrupt is a considered to be an exception (because they are synchronous). Note that as far as Linux is concerned, software interrupt are handled by the CPU as trap so you might see somewhere else that system calls are implemented by trap.

    Signals (or at least UNIX signals) are part of the inter process communication (IPC). They are just like asynchronous message that one process can send to another one. So I would not consider them to be interrupt or exception.

    陷阱:由 trap 指令引起,恢复后 CPU 执行下一条指令(Debug point, system call)

    中断:由硬件电平引起,恢复后 CPU 执行下一条指令

    异常:由软件指令引起,恢复后 CPU 重新执行该条指令(Divide a number by 0 or a page fault)

     

    中断和异常有个比较大的共同点就是"不可预知性",所以是被迫的;而陷阱有"有意为之"的含义

    中断、异常和陷阱产生时都需要切换当前进程上下文进入中断处理程序(IDT table).

  • 相关阅读:
    发音技巧
    SCROM标准和一些概念(转)
    我要告诉测试新手的 (转)
    LCMS与LMS
    SCORM标准的LMS ELearning 学习平台介绍
    【转载】经常在网上看人家的帖子,分享给组里面的兄弟共赏
    选择学习管理系统(LMS)不可忽略的十大要素
    委托(delegate)的使用
    LMS/LCMS相关概念简介
    软件测试
  • 原文地址:https://www.cnblogs.com/sunkang/p/2038819.html
Copyright © 2011-2022 走看看