- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/startup.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/startup.cfa
rac12f1f r8fc652e0 360 360 __tally_stats(proc->cltr->stats, &local_stats); 361 361 if( 0 != proc->print_stats ) { 362 __print_stats( &local_stats, proc->print_stats, "Processor ", proc->name, (void*)proc );362 __print_stats( &local_stats, proc->print_stats, true, proc->name, (void*)proc ); 363 363 } 364 364 #endif … … 456 456 link.prev = 0p; 457 457 #if defined( __CFA_WITH_VERIFY__ ) 458 canary = 0x0D15EA5E0D15EA5E p;458 canary = 0x0D15EA5E0D15EA5E; 459 459 #endif 460 460 … … 622 622 #if !defined(__CFA_NO_STATISTICS__) 623 623 if( 0 != this.print_stats ) { 624 __print_stats( this.stats, this.print_stats, "Cluster", this.name, (void*)&this );624 __print_stats( this.stats, this.print_stats, true, this.name, (void*)&this ); 625 625 } 626 626 free( this.stats );
Note:
See TracChangeset
for help on using the changeset viewer.