Changeset 271 for soft/giet_vm/giet_kernel
- Timestamp:
- Jan 17, 2014, 11:49:27 PM (11 years ago)
- Location:
- soft/giet_vm/giet_kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_kernel/ctx_handler.c
r267 r271 119 119 // reset timer counter 120 120 #if USE_XICU 121 _xcu_timer_reset_cpt(cluster_id, local_id);121 _xcu_timer_reset_cpt(cluster_id, NB_PROCS_MAX + local_id); 122 122 #else 123 _timer_reset_cpt(cluster_id, local_id);123 _timer_reset_cpt(cluster_id, NB_PROCS_MAX + local_id); 124 124 #endif 125 125 -
soft/giet_vm/giet_kernel/kernel_init.c
r263 r271 290 290 } 291 291 292 // the ISR_SWITCH irq index must be NB_PROCS_MAX + local_pid because 293 // the first NB_PROCS_MAX irqs are used by the WAKEUP ones 294 if (isr_switch_index != (NB_PROCS_MAX + local_pid)) 295 { 296 _tty_get_lock( 0 ); 297 _puts("\n[GIET ERROR] ISR_SWITCH wrong index for processor "); 298 _putx(global_pid); 299 _puts("\n. It should be NB_PROCS_MAX + local_pid ="); 300 _putd(NB_PROCS_MAX + local_pid); 301 _puts("\n"); 302 _tty_release_lock( 0 ); 303 _exit(); 304 } 305 292 306 // start system timer 293 307 unsigned int ko; 294 308 #if USE_XICU 295 ko = _xcu_timer_start( cluster_xy, local_pid, GIET_TICK_VALUE );309 ko = _xcu_timer_start( cluster_xy, isr_switch_index, GIET_TICK_VALUE ); 296 310 #else 297 ko = _timer_start( cluster_xy, local_pid, GIET_TICK_VALUE );311 ko = _timer_start( cluster_xy, isr_switch_index, GIET_TICK_VALUE ); 298 312 #endif 299 313 if ( ko )
Note: See TracChangeset
for help on using the changeset viewer.