Commit 1727d59f authored by Robert Schmidt's avatar Robert Schmidt

Tpool: don't override positive performanceFlag

parent 98e923b7
...@@ -97,7 +97,7 @@ void initNamedTpool(char *params,tpool_t *pool, bool performanceMeas, char *name ...@@ -97,7 +97,7 @@ void initNamedTpool(char *params,tpool_t *pool, bool performanceMeas, char *name
char *measr=getenv("threadPoolMeasurements"); char *measr=getenv("threadPoolMeasurements");
pool->measurePerf=performanceMeas; pool->measurePerf=performanceMeas;
// force measurement if the output is defined // force measurement if the output is defined
pool->measurePerf=measr!=NULL; pool->measurePerf |= measr!=NULL;
if (measr) { if (measr) {
mkfifo(measr,0666); mkfifo(measr,0666);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment