Changes in kernel/arch/mips32/src/exception.c [b2fa1204:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/src/exception.c
rb2fa1204 r63e27ef 38 38 #include <panic.h> 39 39 #include <arch/cp0.h> 40 #include <typedefs.h>41 40 #include <arch.h> 42 #include < debug.h>41 #include <assert.h> 43 42 #include <proc/thread.h> 44 43 #include <print.h> … … 121 120 { 122 121 if (*((uint32_t *) istate->epc) == 0x7c03e83b) { 123 ASSERT(THREAD);122 assert(THREAD); 124 123 istate->epc += 4; 125 124 istate->v1 = istate->kt1;
Note:
See TracChangeset
for help on using the changeset viewer.