/* Gestionnaires d'interruption */ /* Copyright (C) 2008 Emmanuel Varoquaux This file is part of XOS. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef _IT_H #define _IT_H void ignore_it(); void divide_error_it(); void debug_it(); void nonmaskable_interrupt_it(); void breakpoint_it(); void overflow_it(); void bounds_check_it(); void invalid_opcode_it(); void device_not_available_it(); void double_fault_it(); void coprocessor_segment_overrun_it(); void invalid_tss_it(); void segment_not_present_it(); void stack_segment_fault_it(); void general_protection_it(); void page_fault_it(); void coprocessor_error_it(); void alignment_check_it(); void machine_check_it(); void timer_it(); void keyboard_it(); void floppy_it(); void syscall_it(); #endif