Changeset 637df35 in rtems for c/src/exec/score/cpu/no_cpu


Ignore:
Timestamp:
07/12/95 19:47:25 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6cc85032
Parents:
68931b5
Message:

Ada95, gnat, go32

Location:
c/src/exec/score/cpu/no_cpu
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/cpu/no_cpu/cpu.c

    r68931b5 r637df35  
    6262}
    6363
    64 /*  _CPU_ISR_install_vector
     64/*PAGE
     65 *
     66 *  _CPU_ISR_install_raw_handler
     67 */
     68 
     69void _CPU_ISR_install_raw_handler(
     70  unsigned32  vector,
     71  proc_ptr    new_handler,
     72  proc_ptr   *old_handler
     73)
     74{
     75  /*
     76   *  This is where we install the interrupt handler into the "raw" interrupt
     77   *  table used by the CPU to dispatch interrupt handlers.
     78   */
     79}
     80
     81/*PAGE
     82 *
     83 *  _CPU_ISR_install_vector
    6584 *
    6685 *  This kernel routine installs the RTEMS handler for the
     
    7594 *
    7695 */
    77 
    7896
    7997void _CPU_ISR_install_vector(
     
    90108    *  handler for this vector number.
    91109    */
     110
     111   _CPU_ISR_install_raw_handler( vector, new_handler, old_handler );
    92112
    93113   /*
  • c/src/exec/score/cpu/no_cpu/cpu.h

    r68931b5 r637df35  
    700700  rtems_cpu_table  *cpu_table,
    701701  void      (*thread_dispatch)
     702);
     703
     704/*
     705 *  _CPU_ISR_install_raw_handler
     706 *
     707 *  This routine installs a "raw" interrupt handler directly into the
     708 *  processor's vector table.
     709 */
     710 
     711void _CPU_ISR_install_raw_handler(
     712  unsigned32  vector,
     713  proc_ptr    new_handler,
     714  proc_ptr   *old_handler
    702715);
    703716
Note: See TracChangeset for help on using the changeset viewer.