trap.c

来自「geekos 0.3.0简单的操作系统」· C语言 代码 · 共 45 行

C
45
字号
/* * Trap handlers * Copyright (c) 2001,2003,2004 David H. Hovemeyer <daveho@cs.umd.edu> * $Revision: 1.20 $ *  * This is free software.  You are permitted to use, * redistribute, and modify it as specified in the file "COPYING". */#include <geekos/idt.h>#include <geekos/kthread.h>#include <geekos/defs.h>#include <geekos/trap.h>/* * TODO: need to add handlers for other exceptions (such as bounds * check, debug, etc.) *//* * Handler for general protection faults and other bad errors. * Kill the current thread (which caused the fault). */static void GPF_Handler(struct Interrupt_State* state){    /* Send the thread to the reaper... */    Print("Exception %d received, killing thread %p\n",	state->intNum, g_currentThread);    Dump_Interrupt_State(state);    Exit(-1);    /* We will never get here */    KASSERT(false);}/* * Initialize handlers for processor traps. */void Init_Traps(void){    Install_Interrupt_Handler(12, &GPF_Handler);  /* stack exception */    Install_Interrupt_Handler(13, &GPF_Handler);  /* general protection fault */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?