Skip to content
Snippets Groups Projects
Commit 44c7ed45 authored by Robert Schmidt's avatar Robert Schmidt
Browse files

Merge remote-tracking branch 'origin/threadPool-hotfix' into integration_2022_wk41

parents 343242f1 3ea36ba0
No related branches found
No related tags found
No related merge requests found
......@@ -121,6 +121,7 @@ check_supported_distribution() {
"rhel8.5") return 0 ;;
"rhel8.6") return 0 ;;
"rhel8.7") return 0 ;;
"rhel9.0") return 0 ;;
"centos7") return 0 ;;
"centos8") return 0 ;;
esac
......
......@@ -167,9 +167,9 @@ void initFloatingCoresTpool(int nbThreads,tpool_t *pool, bool performanceMeas, c
if (nbThreads) {
strcpy(threads,"-1");
for (int i=1; i < nbThreads; i++)
strncat(threads,",-1", sizeof(threads-1));
strncat(threads,",-1", sizeof(threads)-1);
}
threads[sizeof(threads-1)]=0;
threads[sizeof(threads)-1]=0;
initNamedTpool(threads, pool, performanceMeas, name);
}
......
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