| 49 | } |
| 50 | |
| 51 | SystemStatistics getSystemStatistics() { |
| 52 | static StatisticsState statState = StatisticsState(); |
| 53 | const IPAddress ipAddr = machineState.ip.present() ? machineState.ip.get() : IPAddress(); |
| 54 | return getSystemStatistics( |
| 55 | machineState.folder.present() ? machineState.folder.get() : "", &ipAddr, &statState.systemState, false); |
| 56 | } |
| 57 | |
| 58 | #define TRACEALLOCATOR(size) \ |
| 59 | TraceEvent("MemSample") \ |
no test coverage detected