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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_spin.c,v 11.11 2002/07/12 18:56:56 bostic Exp $";
  10. #endif /* not lint */
  11. #include "db_int.h"
  12. /*
  13.  * __os_spin --
  14.  * Return the number of default spins before blocking.
  15.  */
  16. int
  17. __os_spin(dbenv)
  18. DB_ENV *dbenv;
  19. {
  20. SYSTEM_INFO SystemInfo;
  21. /*
  22.  * If the application specified a value or we've already figured it
  23.  * out, return it.
  24.  */
  25. if (dbenv->tas_spins != 0)
  26. return (dbenv->tas_spins);
  27. /* Get the number of processors */
  28. GetSystemInfo(&SystemInfo);
  29. /*
  30.  * Spin 50 times per processor -- we have anecdotal evidence that this
  31.  * is a reasonable value.
  32.  */
  33. if (SystemInfo.dwNumberOfProcessors > 1)
  34.  dbenv->tas_spins = 50 * SystemInfo.dwNumberOfProcessors;
  35. else
  36.  dbenv->tas_spins = 1;
  37. return (dbenv->tas_spins);
  38. }
  39. /*
  40.  * __os_yield --
  41.  * Yield the processor.
  42.  */
  43. void
  44. __os_yield(dbenv, usecs)
  45. DB_ENV *dbenv;
  46. u_long usecs;
  47. {
  48. if (DB_GLOBAL(j_yield) != NULL && DB_GLOBAL(j_yield)() == 0)
  49. return;
  50. __os_sleep(dbenv, 0, usecs);
  51. }