Changeset 874621f in mainline for arch/ia32/src/interrupt.c


Ignore:
Timestamp:
2006-06-06T07:40:51Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0dbc4e7
Parents:
6f9a9bc
Message:

Added kernel circular buffer klog.
Added automatic killing of tasks raising inappropriate exceptions.
TODO Fix vsnprintf return value(and behaviour according to specs) and remove workaround in klog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/interrupt.c

    r6f9a9bc r874621f  
    8080void null_interrupt(int n, istate_t *istate)
    8181{
     82        fault_if_from_uspace(istate, "unserviced interrupt: %d", n);
     83
    8284        PRINT_INFO_ERRCODE(istate);
    8385        panic("unserviced interrupt: %d\n", n);
     
    105107                        return;
    106108                }
     109                fault_if_from_uspace(istate, "general protection fault");
    107110        }
    108111
     
    113116void ss_fault(int n, istate_t *istate)
    114117{
     118        fault_if_from_uspace(istate, "stack fault");
     119
    115120        PRINT_INFO_ERRCODE(istate);
    116121        panic("stack fault\n");
     
    119124void simd_fp_exception(int n, istate_t *istate)
    120125{
    121 
    122         PRINT_INFO_ERRCODE(istate);
    123126        __u32 mxcsr;
    124127        asm
     
    127130                :"=m"(mxcsr)
    128131        );
     132        fault_if_from_uspace(istate, "SIMD FP exception(19), MXCSR: %#zX",
     133                             (__native)mxcsr);
     134
     135        PRINT_INFO_ERRCODE(istate);
    129136        printf("MXCSR: %#zX\n",(__native)(mxcsr));
    130137        panic("SIMD FP exception(19)\n");
     
    136143        scheduler_fpu_lazy_request();
    137144#else
     145        fault_if_from_uspace(istate, "fpu fault");
    138146        panic("fpu fault");
    139147#endif
Note: See TracChangeset for help on using the changeset viewer.