Skip to content

Commit 6054d03

Browse files
author
Paul Dreik
committed
add options for first and last byte size
1 parent 9dfb06b commit 6054d03

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Options.hh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ struct Options
3232
std::size_t buffersize = 1 << 20; // chunksize to use when reading files
3333
long nsecsleep = 0; // number of nanoseconds to sleep between each file read.
3434
std::string resultsfile = "results.txt"; // results file name.
35+
std::uint64_t first_bytes_size =
36+
64; // how much to read during the "read first bytes" step
37+
std::uint64_t last_bytes_size =
38+
64; // how much to read during the "read last bytes" step
3539
};
3640

3741
void

0 commit comments

Comments
 (0)