Changeset 3652ad35 in rtems for c/src/lib/libbsp/hppa1.1/simhppa/startup
- Timestamp:
- 09/19/95 14:53:29 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 38ffa0c
- Parents:
- b3ac6a8d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/hppa1.1/simhppa/startup/bspstart.c
rb3ac6a8d r3652ad35 30 30 #include <bsp.h> 31 31 #include <rtems/libio.h> 32 #include <rtems/core/intthrd.h> 32 33 33 34 #include <libcsupport.h> … … 86 87 */ 87 88 88 if (heir_task ->name == rtems_build_name('I', 'D', 'L', 'E'))89 if (heir_task == _Internal_threads_Idle_thread) 89 90 CPU_HPPA_CLICKS_PER_TICK = fast_clock; 90 else if ( current_task->name == rtems_build_name('I', 'D', 'L', 'E'))91 else if (heir_task == _Internal_threads_Idle_thread) 91 92 CPU_HPPA_CLICKS_PER_TICK = normal_clock; 92 93 } … … 212 213 memset(&fast_idle_extension, 0, sizeof(fast_idle_extension)); 213 214 214 fast_idle_extension.t ask_switch = fast_idle_switch_hook;215 fast_idle_extension.thread_switch = fast_idle_switch_hook; 215 216 216 217 rc = rtems_extension_create(rtems_build_name('F', 'D', 'L', 'E'),
Note: See TracChangeset
for help on using the changeset viewer.