Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/ServerThread.java [261:267]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  void report(ExtrememThread t) {
    Report.acquireReportLock();
    history.report(t, label, config.ReportCSV());
    Report.output("Server Thread ", label, " memory behavior");
    MemoryLog.report(t, config.ReportCSV(), memoryLog(), garbageLog());
    Report.releaseReportLock();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



Extremem/src/main/java/com/amazon/corretto/benchmark/extremem/CustomerThread.java [374:380]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  void report(ExtrememThread t) {
    Report.acquireReportLock();
    history.report(t, label, config.ReportCSV());
    Report.output("Customer Thread ", label, " memory behavior");
    MemoryLog.report(t, config.ReportCSV(), memoryLog(), garbageLog());
    Report.releaseReportLock();
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



