Add thread wait parameter for ms sleep

This commit is contained in:
2020-04-08 15:12:15 +02:00
parent 9518f03deb
commit 311a58a46d
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -19,6 +19,7 @@ namespace config
extern std::string raw_image_dataset_name;
extern uint32_t parameters_read_retry_interval;
extern size_t recv_saving_wait_ms;
}
#endif
+3
View File
@@ -22,4 +22,7 @@ namespace config {
hsize_t dataset_increase_step = 1000;
// To which value to initialize a dataset size.
hsize_t initial_dataset_size = 1000;
// Max time for compress and commit already acquired RB slots.
size_t recv_saving_wait_ms = 100;
}