Changeset 1b033b8 for libcfa/src/concurrency/stats.cfa
- Timestamp:
- Nov 13, 2020, 11:32:15 AM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- ac12f1f
- Parents:
- 0989e79
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/stats.cfa
r0989e79 r1b033b8 79 79 } 80 80 81 void __print_stats( struct __stats_t * stats, int flags, bool cluster, const char * name, void * id ) with( *stats ) {81 void __print_stats( struct __stats_t * stats, int flags, const char * type, const char * name, void * id ) with( *stats ) { 82 82 83 83 if( flags & CFA_STATS_READY_Q ) { … … 109 109 "-- wake on exit : %'15" PRIu64 "\n" 110 110 "\n" 111 , cluster ? "Cluster" : "Processor",name, id111 , type, name, id 112 112 , ready.pick.pop.success 113 113 , ready.pick.push.success
Note: See TracChangeset
for help on using the changeset viewer.