Changeset 637df35 in rtems for c/src/exec/score/cpu/no_cpu
- Timestamp:
- 07/12/95 19:47:25 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6cc85032
- Parents:
- 68931b5
- 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 62 62 } 63 63 64 /* _CPU_ISR_install_vector 64 /*PAGE 65 * 66 * _CPU_ISR_install_raw_handler 67 */ 68 69 void _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 65 84 * 66 85 * This kernel routine installs the RTEMS handler for the … … 75 94 * 76 95 */ 77 78 96 79 97 void _CPU_ISR_install_vector( … … 90 108 * handler for this vector number. 91 109 */ 110 111 _CPU_ISR_install_raw_handler( vector, new_handler, old_handler ); 92 112 93 113 /* -
c/src/exec/score/cpu/no_cpu/cpu.h
r68931b5 r637df35 700 700 rtems_cpu_table *cpu_table, 701 701 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 711 void _CPU_ISR_install_raw_handler( 712 unsigned32 vector, 713 proc_ptr new_handler, 714 proc_ptr *old_handler 702 715 ); 703 716
Note: See TracChangeset
for help on using the changeset viewer.