gettimeofday.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. #include "libcompat.h"
  21. #include <errno.h>
  22. #if defined(_MSC_VER) || defined(__BORLANDC__)
  23. #define EPOCHFILETIME (116444736000000000i64)
  24. #else
  25. #define EPOCHFILETIME (116444736000000000LL)
  26. #endif
  27. int gettimeofday(struct timeval *tv, void *tz)
  28. {
  29. #if defined(_MSC_VER)
  30. union
  31. {
  32. __int64 ns100; /* time since 1 Jan 1601 in 100ns units */
  33. FILETIME ft;
  34. } now;
  35. GetSystemTimeAsFileTime(&now.ft);
  36. tv->tv_usec = (long)((now.ns100 / 10LL) % 1000000LL);
  37. tv->tv_sec = (long)((now.ns100 - EPOCHFILETIME) / 10000000LL);
  38. return (0);
  39. #else
  40. /* Return that there is no implementation of this on the system */
  41. errno = ENOSYS;
  42. return -1;
  43. #endif /* _MSC_VER */
  44. }