Ignore:
Timestamp:
Apr 1, 2021, 8:20:10 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
c426b03
Parents:
a344425
Message:

Minor improvement to stats printing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/stats.cfa

    ra344425 r8c3a3a14  
    9797                        __cfaabi_bits_print_safe( STDOUT_FILENO,
    9898                                "----- %s \"%s\" (%p) - Ready Q Stats -----\n"
    99                                 "- total threads  : %'15" PRIu64 "run, %'15" PRIu64 "schd (%'" PRIu64 "mig )\n"
     99                                "- total threads  : %'15" PRIu64 "run, %'15" PRIu64 "schd (%'" PRIu64 "ext, %'" PRIu64 "mig )\n"
    100100                                "- push avg probe : %'3.2lf, %'3.2lfl (%'15" PRIu64 " attempts, %'15" PRIu64 " locals)\n"
    101101                                "- ext  avg probe : %'3.2lf, %'3.2lfl (%'15" PRIu64 " attempts, %'15" PRIu64 " locals)\n"
     
    105105                                , type, name, id
    106106                                , ready.pick.pop.success
    107                                 , ready.pick.push.success
    108                                 , ready.threads.migration
     107                                , ready.pick.push.success + ready.pick.ext.success
     108                                , ready.pick.ext.success, ready.threads.migration
    109109                                , push_len, lpush_len, ready.pick.push.attempt, ready.pick.push.local
    110110                                , ext_len , lext_len , ready.pick.ext .attempt, ready.pick.ext .local
Note: See TracChangeset for help on using the changeset viewer.