Skip to content
Snippets Groups Projects

Replace pthread_exit(NULL) calls by return NULL

Merged Simon Praetorius requested to merge issue/pthread-exit-null into master
2 files
+ 2
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -94,7 +94,7 @@ void *solve(void* arg)
std::cout<<"AMG solving took "<<solvetime<<" seconds"<<std::endl;
pthread_exit(NULL);
return NULL;
}
void *solve2(void* arg)
Loading