Changeset 214ec25c in mainline for kernel/arch/arm32/src/exception.c


Ignore:
Timestamp:
2010-06-11T16:07:21Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b584cd4
Parents:
b3b7e14a
Message:

use unsigned integers for exception and interrupt numbers

File:
1 edited

Legend:

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

    rb3b7e14a r214ec25c  
    9191 *
    9292 * Dispatches the syscall.
    93  */
    94 static void swi_exception(int exc_no, istate_t *istate)
     93 *
     94 */
     95static void swi_exception(unsigned int exc_no, istate_t *istate)
    9596{
    9697        istate->r0 = syscall_handler(istate->r0, istate->r1, istate->r2,
     
    148149 * Determines the sources of interrupt and calls their handlers.
    149150 */
    150 static void irq_exception(int exc_no, istate_t *istate)
     151static void irq_exception(unsigned int exc_no, istate_t *istate)
    151152{
    152153        machine_irq_exception(exc_no, istate);
Note: See TracChangeset for help on using the changeset viewer.