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

Merge branch 'issue/pthread-exit-null' into 'master'

Replace pthread_exit(NULL) calls by return NULL

Closes #121

See merge request !589
parents 9aa357d8 50f150c1
No related branches found
No related tags found
1 merge request!589Replace pthread_exit(NULL) calls by return NULL
Pipeline #74136 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.
Finish editing this message first!
Please register or to comment