MCPcopy Create free account
hub / github.com/PlatformLab/NanoLog / decompressUnordered

Method decompressUnordered

runtime/Log.cc:2049–2053  ·  view source on GitHub ↗

* Decompress the file open()-ed to a file descriptor. This invocation will * not attempt to sort the log entries by time, but otherwise functions * in the same way as decompressTo(). * * \param outputFd * File descriptor to output the log messages to * \param logMsgsToPrint * Number of log messages to print before returning * \return * The number of log messages processed;

Source from the content-addressed store, hash-verified

2047 * The number of log messages processed; a negative value indicates error
2048 */
2049int64_t
2050Log::Decoder::decompressUnordered(FILE* outputFd) {
2051 bool success = internalDecompressUnordered(outputFd);
2052 return (success) ? logMsgsPrinted : -1;
2053}
2054
2055}; /* NanoLogInternal */

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected