Skip to content
Snippets Groups Projects
Commit 50f150c1 authored by Simon Praetorius's avatar Simon Praetorius
Browse files

Replace pthread_exit(NULL) calls by return NULL

parent d32dd75c
Branches
Tags
1 merge request!589Replace pthread_exit(NULL) calls by return NULL
Pipeline #74097 passed
......@@ -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)
......
......@@ -75,7 +75,7 @@ void *solve(void* arg)
std::cout<<"AMG solving took "<<solvetime<<" seconds"<<std::endl;
pthread_exit(NULL);
return NULL;
}
void *solve2(void* arg)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment