Changeset 963 for branches/reconfiguration/platforms
- Timestamp:
- Apr 2, 2015, 1:18:56 PM (10 years ago)
- Location:
- branches/reconfiguration/platforms/tsar_generic_iob
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/top.cpp
r961 r963 1160 1160 XCU_NB_WTI, 1161 1161 XCU_NB_OUT, 1162 IRQ_PER_PROCESSOR, 1162 1163 1163 1164 distributed_boot, -
branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/include/tsar_iob_cluster.h
r961 r963 237 237 size_t xcu_nb_wti, 238 238 size_t xcu_nb_out, 239 size_t irq_per_proc, 239 240 240 241 bool distboot, -
branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp
r961 r963 77 77 size_t xcu_nb_wti, 78 78 size_t xcu_nb_out, 79 size_t irq_per_proc, 79 80 80 81 bool distboot, … … 536 537 for ( size_t j = 0 ; j < 6 ; j++) 537 538 { 538 if ( j < 4 ) proc[p]->p_irq[j] (signal_proc_it[4*p + j]); 539 else proc[p]->p_irq[j] (signal_false); 539 if ( j < irq_per_proc ) 540 { 541 proc[p]->p_irq[j] (signal_proc_it[irq_per_proc*p + j]); 542 } 543 else 544 { 545 proc[p]->p_irq[j] (signal_false); 546 } 540 547 } 541 548 }
Note: See TracChangeset
for help on using the changeset viewer.