diff options
Diffstat (limited to 'test/sem_test.cpp')
-rw-r--r-- | test/sem_test.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/sem_test.cpp b/test/sem_test.cpp index ae82c91..103e5e5 100644 --- a/test/sem_test.cpp +++ b/test/sem_test.cpp @@ -9,19 +9,23 @@ #include <chrono> #include <thread> -static void +namespace { + +void wait_for_sem(raul::Semaphore* sem) { sem->wait(); } -static void +void timed_wait_for_sem(raul::Semaphore* sem) { while (!sem->timed_wait(std::chrono::milliseconds(100))) { } } +} // namespace + int main() { |