Address compiler and test failures

This commit is contained in:
Tyler Wilding
2020-09-03 23:56:35 -04:00
parent 39eb3a90ea
commit dcde103c26
14 changed files with 47 additions and 57 deletions
+1 -2
View File
@@ -99,7 +99,6 @@ void SystemThread::start(std::function<void(SystemThreadInterface&)> f) {
* Join a system thread
*/
void SystemThread::join() {
void* x;
thread.join();
running = false;
}
@@ -166,5 +165,5 @@ void SystemThreadInterface::report_perf_stats() {
thread.last_cpu_user = current_user;
thread.last_collection_nanoseconds = current_ns;
}
}
}
#endif