Changeset 1690c6b in rtems for cpukit


Ignore:
Timestamp:
07/21/95 20:10:49 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
2f2a597
Parents:
9e738b65
Message:

after testing go32 and cvme961

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/cpu/i386/cpu.c

    r9e738b65 r1690c6b  
    8787    _go32_dpmi_seginfo handler_info;
    8888 
    89     *old_handler =  0;    /* XXX not supported */
     89    /* get the address of the old handler */
     90    _go32_dpmi_get_protected_mode_interrupt_vector( vector, &handler_info);
     91 
     92    /* Notice how we're failing to save the pm_segment portion of the */
     93    /* structure here?  That means we might crash the system if we  */
     94    /* try to restore the ISR.  Can't fix this until i386_isr is  */
     95    /* redefined.  XXX [BHC].           */
     96    *old_handler = (proc_ptr *) handler_info.pm_offset;
    9097
    9198    handler_info.pm_offset = (u_long) new_handler;
Note: See TracChangeset for help on using the changeset viewer.