Changeset 631ca4d in mainline for arch/mips32/src/exception.c


Ignore:
Timestamp:
2006-03-13T20:51:35Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5c089c3a
Parents:
25d7709
Message:

New synchronous ipc.
Widened syscall to support up to 5 parameters.

File:
1 edited

Legend:

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

    r25d7709 r631ca4d  
    135135{
    136136        interrupts_enable();
    137         if (istate->a3 < SYSCALL_END)
    138                 istate->v0 = syscall_table[istate->a3](istate->a0,
     137        if (istate->t0 < SYSCALL_END)
     138                istate->v0 = syscall_table[istate->t0](istate->a0,
    139139                                                       istate->a1,
    140                                                        istate->a2);
     140                                                       istate->a2,
     141                                                       istate->a3);
    141142        else
    142143                panic("Undefined syscall %d", istate->a3);
Note: See TracChangeset for help on using the changeset viewer.