⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 trap.c

📁 GEEKOS是一个免费的操作系统内核
💻 C
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -