| 1315 | } |
| 1316 | |
| 1317 | void FlightRecorder::flush() { |
| 1318 | if (_rec != NULL) { |
| 1319 | _rec_lock.lock(); |
| 1320 | _rec->switchChunk(); |
| 1321 | _rec_lock.unlock(); |
| 1322 | } |
| 1323 | } |
| 1324 | |
| 1325 | size_t FlightRecorder::usedMemory() { |
| 1326 | size_t bytes = 0; |
no test coverage detected