Changeset 567807b1 in mainline for arch/ia32/include/interrupt.h


Ignore:
Timestamp:
2006-05-24T17:03:29Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d6bc2d5
Parents:
82da5f5
Message:

Modify the hierarchy of page fault handlers to pass access mode that caused the fault.
Architectures are required to pass either PF_ACCESS_READ, PF_ACCESS_WRITE or PF_ACCESS_EXEC
to as_page_fault(), depending on the cause of the fault.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/include/interrupt.h

    r82da5f5 r567807b1  
    9393extern void (* eoi_function)(void);
    9494
     95extern void PRINT_INFO_ERRCODE(istate_t *istate);
    9596extern void null_interrupt(int n, istate_t *istate);
    9697extern void gp_fault(int n, istate_t *istate);
     
    9899extern void ss_fault(int n, istate_t *istate);
    99100extern void simd_fp_exception(int n, istate_t *istate);
    100 extern void page_fault(int n, istate_t *istate);
    101101extern void syscall(int n, istate_t *istate);
    102102extern void tlb_shootdown_ipi(int n, istate_t *istate);
Note: See TracChangeset for help on using the changeset viewer.