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

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.7 2002/07/12 18:56:53 bostic Exp $";
  10. #endif /* not lint */
  11. #include <sys/types.h>
  12. #include <sys/timeb.h>
  13. #include <string.h>
  14. #include "db_int.h"
  15. /*
  16.  * __os_clock --
  17.  * Return the current time-of-day clock in seconds and microseconds.
  18.  */
  19. int
  20. __os_clock(dbenv, secsp, usecsp)
  21. DB_ENV *dbenv;
  22. u_int32_t *secsp, *usecsp; /* Seconds and microseconds. */
  23. {
  24. struct _timeb now;
  25. _ftime(&now);
  26. if (secsp != NULL)
  27. *secsp = (u_int32_t)now.time;
  28. if (usecsp != NULL)
  29. *usecsp = now.millitm * 1000;
  30. return (0);
  31. }