From 70d2a0e0698622d9c56452f68e04b062aaa60aaf Mon Sep 17 00:00:00 2001 From: Volker Fischer Date: Sat, 20 Jun 2020 13:47:15 +0200 Subject: [PATCH] added a TODO comment --- src/server.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server.cpp b/src/server.cpp index 73af1ce0..7fcae82e 100755 --- a/src/server.cpp +++ b/src/server.cpp @@ -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++ )