Update blah2.cpp

Cosmetic (as there's no further code to execute.. But terminating the t2 thread correctly.
This commit is contained in:
sdn-ninja 2024-05-09 21:57:38 +01:00 committed by GitHub
parent 25eea87083
commit 363a81dfaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -307,7 +307,7 @@ int main(int argc, char **argv)
}
}
});
t2.join();
t1.join();
return 0;
@ -418,4 +418,4 @@ void timing_helper(std::vector<std::string>& timing_name,
double delta_ms = (double)(time_us.back()-time_us[time_us.size()-2]) / 1000;
timing_name.push_back(name);
timing_time.push_back(delta_ms);
}
}