Changeset 8419b76
- Timestamp:
- Jun 10, 2022, 5:11:07 PM (2 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 07997cd
- Parents:
- 329e26a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/printer.cfa
r329e26a r8419b76 82 82 if(this.stats.accpt.accepts > 0) { 83 83 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; 85 86 } 86 87 87 88 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"; 90 91 sout | " - zipf sizes:"; 91 92 for(i; zipf_cnts) {
Note: See TracChangeset
for help on using the changeset viewer.