Merge pull request #3913 from omwok/master
[mono.git] / mono / io-layer / timefuncs.c
index 57977b7d90aa7decc71c7dc0d6d12cb0b3d1eb58..7ec8e4a8ee72a8ae43922dd6cb794c5c2d2e41cf 100644 (file)
 #include <glib.h>
 #include <sys/time.h>
 #include <stdlib.h>
+#include <stdio.h>
 
 #include <mono/io-layer/wapi.h>
-#include <mono/io-layer/timefuncs-private.h>
+#include <mono/io-layer/timefuncs.h>
+#include "mono/utils/mono-time.h"
 
 #undef DEBUG
 
@@ -25,46 +27,3 @@ void _wapi_time_t_to_filetime (time_t timeval, WapiFileTime *filetime)
        filetime->dwLowDateTime = ticks & 0xFFFFFFFF;
        filetime->dwHighDateTime = ticks >> 32;
 }
-
-void _wapi_timeval_to_filetime (struct timeval *tv, WapiFileTime *filetime)
-{
-       guint64 ticks;
-       
-       ticks = ((guint64)tv->tv_sec * 10000000) +
-               ((guint64)tv->tv_usec * 10) + 116444736000000000ULL;
-       filetime->dwLowDateTime = ticks & 0xFFFFFFFF;
-       filetime->dwHighDateTime = ticks >> 32;
-}
-
-gboolean QueryPerformanceCounter(WapiLargeInteger *count G_GNUC_UNUSED)
-{
-       return(FALSE);
-}
-
-gboolean QueryPerformanceFrequency(WapiLargeInteger *freq G_GNUC_UNUSED)
-{
-       return(FALSE);
-}
-
-guint32 GetTickCount (void)
-{
-       struct timeval tv;
-       guint32 ret;
-       
-       ret=gettimeofday (&tv, NULL);
-       if(ret==-1) {
-               return(0);
-       }
-       
-       /* This is supposed to return milliseconds since reboot but I
-        * really can't be bothered to work out the uptime, especially
-        * as the 32bit value wraps around every 47 days
-        */
-       ret=(guint32)((tv.tv_sec * 1000) + (tv.tv_usec / 1000));
-
-#ifdef DEBUG
-       g_message ("%s: returning %d", __func__, ret);
-#endif
-
-       return(ret);
-}