libcheck: Update the compatibility code and checks
[platform/upstream/gstreamer.git] / libs / gst / check / libcheck / libcompat / gettimeofday.c
1 /*
2  * Check: a unit test framework for C
3  * Copyright (C) 2001, 2002 Arien Malec
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
18  * MA 02110-1301, USA.
19  */
20
21 #include "libcompat.h"
22 #include <errno.h>
23
24 #if defined(_MSC_VER) || defined(__BORLANDC__)
25 #define EPOCHFILETIME (116444736000000000i64)
26 #else
27 #define EPOCHFILETIME (116444736000000000LL)
28 #endif
29
30 int
31 gettimeofday (struct timeval *tv, void *tz)
32 {
33 #if _MSC_VER
34   union
35   {
36     __int64 ns100;              /*time since 1 Jan 1601 in 100ns units */
37     FILETIME ft;
38   } now;
39
40   GetSystemTimeAsFileTime (&now.ft);
41   tv->tv_usec = (long) ((now.ns100 / 10LL) % 1000000LL);
42   tv->tv_sec = (long) ((now.ns100 - EPOCHFILETIME) / 10000000LL);
43   return (0);
44 #else
45   // Return that there is no implementation of this on the system
46   errno = ENOSYS;
47   return -1;
48 #endif /* _MSC_VER */
49 }