summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--zlibrary/core/src/unix/time/ZLUnixTime.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/zlibrary/core/src/unix/time/ZLUnixTime.cpp b/zlibrary/core/src/unix/time/ZLUnixTime.cpp
index dd23ae5..959fde2 100644
--- a/zlibrary/core/src/unix/time/ZLUnixTime.cpp
+++ b/zlibrary/core/src/unix/time/ZLUnixTime.cpp
@@ -17,7 +17,7 @@
* 02110-1301, USA.
*/
-#include <sys/timeb.h>
+#include <sys/time.h>
#include <time.h>
#include <ZLTime.h>
@@ -25,9 +25,9 @@
#include "ZLUnixTime.h"
ZLTime ZLUnixTimeManager::currentTime() const {
- struct timeb timeB;
- ftime(&timeB);
- return ZLTime((long)timeB.time, timeB.millitm);
+ struct timeval timeB;
+ gettimeofday(&timeB,NULL);
+ return ZLTime((long)timeB.tv_sec, timeB.tv_usec/1000);
}
short ZLUnixTimeManager::hoursBySeconds(long seconds) const {