X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Futils.cpp;h=b59a8af0ea944fdde78cf77d4ee5c38cf4b6aa15;hp=123b2d9192c11edfb2fda29f1a7aa22d6cb6cd66;hb=03bacb2343eb5d17819732582c0866f087e9ce27;hpb=967785734be5c3fc6f75da122c2d93ebbb338271 diff --git a/source/time/utils.cpp b/source/time/utils.cpp index 123b2d9..b59a8af 100644 --- a/source/time/utils.cpp +++ b/source/time/utils.cpp @@ -3,8 +3,11 @@ #else #include #include +#include #endif +#include #include "datetime.h" +#include "rawtime_private.h" #include "timedelta.h" #include "timestamp.h" #include "units.h" @@ -15,9 +18,6 @@ using namespace std; namespace Msp { namespace Time { -/** -Returns the current timestamp. -*/ TimeStamp now() { #ifndef WIN32 @@ -53,9 +53,6 @@ string format_now(const string &fmt) return DateTime(now()).format(fmt); } -/** -Returns the CPU time used by the program so far. -*/ TimeDelta get_cpu_time() { #ifndef WIN32 @@ -68,17 +65,15 @@ TimeDelta get_cpu_time() #endif } -/** -Sleeps for the given time. -*/ -int sleep(const TimeDelta &d) +void sleep(const TimeDelta &d) { #ifndef WIN32 - timespec ts = d; - return nanosleep(&ts, 0); + timespec ts = rawtime_to_timespec(d.raw()); + while(nanosleep(&ts, 0)==-1) + if(errno!=EINTR) + throw system_error("nanosleep"); #else Sleep((DWORD)(d/msec)); - return 0; #endif }