os_clock.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 2001-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_clock.c,v 1.9 2002/03/29 20:46:44 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #if TIME_WITH_SYS_TIME
  14. #include <sys/time.h>
  15. #include <time.h>
  16. #else
  17. #if HAVE_SYS_TIME_H
  18. #include <sys/time.h>
  19. #else
  20. #include <time.h>
  21. #endif /* HAVE_SYS_TIME_H */
  22. #endif /* TIME_WITH SYS_TIME */
  23. #include <string.h>
  24. #endif
  25. #include "db_int.h"
  26. /*
  27.  * __os_clock --
  28.  * Return the current time-of-day clock in seconds and microseconds.
  29.  *
  30.  * PUBLIC: int __os_clock __P((DB_ENV *, u_int32_t *, u_int32_t *));
  31.  */
  32. int
  33. __os_clock(dbenv, secsp, usecsp)
  34. DB_ENV *dbenv;
  35. u_int32_t *secsp, *usecsp; /* Seconds and microseconds. */
  36. {
  37. #if defined(HAVE_GETTIMEOFDAY)
  38. struct timeval tp;
  39. int ret;
  40. retry: if (gettimeofday(&tp, NULL) != 0) {
  41. if ((ret = __os_get_errno()) == EINTR)
  42. goto retry;
  43. __db_err(dbenv, "gettimeofday: %s", strerror(ret));
  44. return (ret);
  45. }
  46. if (secsp != NULL)
  47. *secsp = tp.tv_sec;
  48. if (usecsp != NULL)
  49. *usecsp = tp.tv_usec;
  50. #endif
  51. #if !defined(HAVE_GETTIMEOFDAY) && defined(HAVE_CLOCK_GETTIME)
  52. struct timespec tp;
  53. int ret;
  54. retry: if (clock_gettime(CLOCK_REALTIME, &tp) != 0) {
  55. if ((ret = __os_get_errno()) == EINTR)
  56. goto retry;
  57. __db_err(dbenv, "clock_gettime: %s", strerror(ret));
  58. return (ret);
  59. }
  60. if (secsp != NULL)
  61. *secsp = tp.tv_sec;
  62. if (usecsp != NULL)
  63. *usecsp = tp.tv_nsec / 1000;
  64. #endif
  65. #if !defined(HAVE_GETTIMEOFDAY) && !defined(HAVE_CLOCK_GETTIME)
  66. time_t now;
  67. int ret;
  68. if (time(&now) == (time_t)-1) {
  69. ret = __os_get_errno();
  70. __db_err(dbenv, "time: %s", strerror(ret));
  71. return (ret);
  72. }
  73. if (secsp != NULL)
  74. *secsp = now;
  75. if (usecsp != NULL)
  76. *usecsp = 0;
  77. #endif
  78. return (0);
  79. }