Changeset ce890ec9 in mainline for kernel/arch/mips32/src/exception.c


Ignore:
Timestamp:
2010-09-02T19:54:37Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
23c8be7f
Parents:
7b213f2
Message:

Fix mips32 build and make syscall_shortcut() use standard istate_t offsets.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/mips32/src/exception.c

    r7b213f2 rce890ec9  
    8383        printf("lo=%p\thi=%p\t\n", istate->lo, istate->hi);
    8484        printf("cp0_status=%p\tcp0_epc=%p\tk1=%p\n",
    85             istate->status, istate->epc, istate->k1);
     85            istate->status, istate->epc, istate->kt1);
    8686}
    8787
     
    9797                ASSERT(THREAD);
    9898                istate->epc += 4;
    99                 istate->v1 = istate->k1;
     99                istate->v1 = istate->kt1;
    100100        } else
    101101                unhandled_exception(n, istate);
Note: See TracChangeset for help on using the changeset viewer.