added a TODO comment
This commit is contained in:
parent
2ce9b4907e
commit
70d2a0e069
1 changed files with 3 additions and 0 deletions
|
@ -997,6 +997,9 @@ static CTimingMeas JitterMeas ( 1000, "test2.dat" ); JitterMeas.Measure(); // TE
|
|||
}
|
||||
|
||||
#ifdef USE_OMP
|
||||
// TODO This does not work as expected, the CPU is at high levels even if not much work is to be done. So we
|
||||
// have an issue using OMP in the OnTimer() function. Even if #pragma omp parallel for is used on a trivial
|
||||
// for loop for testing, still the CPU usage goes to very high values -> What is the cause of this issue?
|
||||
# pragma omp parallel for
|
||||
#endif
|
||||
for ( int i = 0; i < iNumClients; i++ )
|
||||
|
|
Loading…
Reference in a new issue