1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

[pzstd] Add status update for MB written

This commit is contained in:
Nick Terrell
2016-09-23 15:47:26 -07:00
parent dac0376908
commit 3980167488
2 changed files with 32 additions and 4 deletions

View File

@ -84,11 +84,13 @@ std::uint64_t asyncDecompressFrames(
* (de)compression job.
* @param outputFd The file descriptor to write to
* @param decompress Are we decompressing?
* @param verbosity The verbosity level to log at
* @returns The number of bytes written
*/
std::uint64_t writeFile(
ErrorHolder& errorHolder,
WorkQueue<std::shared_ptr<BufferWorkQueue>>& outs,
FILE* outputFd,
bool decompress);
bool decompress,
int verbosity);
}