diff options
-rw-r--r-- | raul/Semaphore.hpp | 5 | ||||
-rw-r--r-- | wscript | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/raul/Semaphore.hpp b/raul/Semaphore.hpp index dbebf06..9979a09 100644 --- a/raul/Semaphore.hpp +++ b/raul/Semaphore.hpp @@ -134,8 +134,9 @@ Semaphore::try_wait() inline bool Semaphore::timed_wait(unsigned ms) { - const unsigned seconds = ms / 1000; - const mach_timespec_t t = { seconds, (ms - (seconds * 1000)) * 1000000 }; + const unsigned s = ms / 1000; + const int nsec = ((int)ms - (s * 1000)) * 1000000; + const mach_timespec_t t = { s, nsec }; return semaphore_timedwait(_sem, t) == KERN_SUCCESS; } @@ -102,8 +102,10 @@ def build(bld): framework = ' CoreServices ' if bld.env.BUILD_TESTS: - test_libs = ['pthread', 'rt'] + test_libs = ['pthread'] test_cxxflags = [] + if bld.env.DEST_OS != 'darwin' and bld.env.DEST_OS != 'win32': + test_libs += ['rt'] if bld.is_defined('HAVE_GCOV'): test_libs += ['gcov'] test_cxxflags += ['-fprofile-arcs', '-ftest-coverage'] |