Increase sleep time to 1.0 again to solve false negatives

This commit is contained in:
Mano 2022-12-01 01:13:03 +00:00
parent bd7fdc0b69
commit 230dd7e643
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ int main(int argc, char *argv[]){
threadpool thpool = thpool_init(num_threads);
thpool_destroy(thpool);
sleep(0.8); // Sometimes main exits before thpool_destroy finished 100%
sleep(1); // Sometimes main exits before thpool_destroy finished 100%
return 0;
}