Changeset 25d7709 in mainline for arch/mips32/include/exception.h


Ignore:
Timestamp:
2006-03-13T20:08:16Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
631ca4d
Parents:
45d6add
Message:

Nicer ia32 interrupt handlers and structures holding interrupted context data.
Unify the name holding interrupted context data on all architectures to be istate.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/include/exception.h

    r45d6add r25d7709  
    3434#endif
    3535
     36#include <typedefs.h>
     37
    3638#define EXC_Int         0
    3739#define EXC_Mod         1
     
    5355#define EXC_VCED        31
    5456
    55 struct exception_regdump {
     57struct istate {
    5658        __u32 at;
    5759        __u32 v0;
     
    9193};
    9294
    93 extern void exception(struct exception_regdump *pstate);
     95extern void exception(istate_t *istate);
    9496extern void tlb_refill_entry(void);
    9597extern void exception_entry(void);
Note: See TracChangeset for help on using the changeset viewer.