Changeset 8419b76 for benchmark/io/http


Ignore:
Timestamp:
Jun 10, 2022, 5:11:07 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
Children:
07997cd
Parents:
329e26a
Message:

printer now properly uses eng3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/io/http/printer.cfa

    r329e26a r8419b76  
    8282                        if(this.stats.accpt.accepts > 0) {
    8383                                sout | "----- Acceptor Stats -----";
    84                                 sout | "accept  : " | this.stats.accpt.accepts | "calls," | this.stats.accpt.eagains | "eagains," | this.stats.accpt.creates | " thrds";
     84                                sout | "accept  : " | eng3(this.stats.accpt.accepts) | "calls," | eng3(this.stats.accpt.eagains) | "eagains," | eng3(this.stats.accpt.creates) | " thrds";
     85                                sout | nl;
    8586                        }
    8687
    8788                        sout | "----- Connection Stats -----";
    88                         sout | "sendfile  : " | calls | "calls," | tries | "tries (" | ratio | " try/call)";
    89                         sout | "            " | header | "header," | splcin | "splice in," | splcot | "splice out";
     89                        sout | "sendfile  : " | eng3(calls) | "calls," | eng3(tries) | "tries (" | ratio | " try/call)";
     90                        sout | "            " | eng3(header) | "header," | eng3(splcin) | "splice in," | eng3(splcot) | "splice out";
    9091                        sout | " - zipf sizes:";
    9192                        for(i; zipf_cnts) {
Note: See TracChangeset for help on using the changeset viewer.