Changeset 48 for trunk/hal/x86_64/hal_do_exceptions.c
- Timestamp:
- Jun 26, 2017, 12:08:02 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/hal_do_exceptions.c
r25 r48 23 23 */ 24 24 25 #include <hal_internal.h> 26 25 27 #include <types.h> 26 28 #include <task.h> … … 39 41 static error_t fpu_exception_handler( reg_t * regs_tbl ) 40 42 { 43 x86_panic((char *)__func__); 41 44 return 0; 42 45 } 43 44 46 45 47 static error_t mmu_exception_handler( uint32_t excp_code, 46 48 uint32_t bad_vaddr ) 47 49 { 50 x86_panic((char *)__func__); 48 51 return 0; 49 52 } … … 53 56 reg_t * regs_tbl ) 54 57 { 55 58 x86_panic((char *)__func__); 56 59 }
Note: See TracChangeset
for help on using the changeset viewer.