Home
last modified time | relevance | path

Searched refs:set_exception_table_vec (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.10/arch/sh/kernel/
Dtraps_32.c744 void *set_exception_table_vec(unsigned int vec, void *handler) in set_exception_table_vec() function
756 set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst); in trap_init()
757 set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst); in trap_init()
774 set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler); in trap_init()
777 set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error); in trap_init()
778 set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error); in trap_init()
780 set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler); in trap_init()
785 set_exception_table_vec(TRAP_UBC, breakpoint_trap_handler); in trap_init()
/Linux-v5.10/arch/sh/include/asm/
Duaccess.h140 extern void *set_exception_table_vec(unsigned int vec, void *handler);
144 return set_exception_table_vec(evt >> 5, handler); in set_exception_table_evt()