os_spin.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997, 1998, 1999, 2000
  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.6 2000/05/17 19:30:19 bostic Exp $";
  10. #endif /* not lint */
  11. #include "db_int.h"
  12. #include "os_jump.h"
  13. /*
  14.  * __os_spin --
  15.  * Return the number of default spins before blocking.
  16.  */
  17. int
  18. __os_spin()
  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 (DB_GLOBAL(db_tas_spins) != 0)
  26. return (DB_GLOBAL(db_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.  DB_GLOBAL(db_tas_spins) = 50 * SystemInfo.dwNumberOfProcessors;
  35. else
  36.  DB_GLOBAL(db_tas_spins) = 1;
  37. return (DB_GLOBAL(db_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_jump.j_yield != NULL && __db_jump.j_yield() == 0)
  49. return;
  50. __os_sleep(dbenv, 0, usecs);
  51. }