MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / search_exception_table

Function search_exception_table

libcpu/ppc/ppc405/traps.c:96–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96unsigned long
97search_exception_table(unsigned long addr)
98{
99 unsigned long ret = 0;
100
101 /* There is only the kernel to search. */
102 // ret = search_one_table(__start___ex_table, __stop___ex_table-1, addr);
103 /* if the serial port does not hang in exception, rt_kprintf can be used */
104 if (ret) return ret;
105
106 return 0;
107}
108
109/*
110 * Handle external interrupts

Callers 1

MachineCheckExceptionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected