blob: 5d5a23a286f85c0823f36aaa4543ba7a2bdfaca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997-2006
* Oracle Corporation. All rights reserved.
*
* $Id: os_spin.c,v 12.6 2006/08/24 14:46:22 bostic Exp $
*/
#include "db_config.h"
#include "db_int.h"
/*
* __os_spin --
* Return the number of default spins before blocking.
*/
u_int32_t
__os_spin(dbenv)
DB_ENV *dbenv;
{
SYSTEM_INFO SystemInfo;
u_int32_t tas_spins;
/* Get the number of processors */
GetSystemInfo(&SystemInfo);
/*
* Spin 50 times per processor -- we have anecdotal evidence that this
* is a reasonable value.
*/
if (SystemInfo.dwNumberOfProcessors > 1)
tas_spins = 50 * SystemInfo.dwNumberOfProcessors;
else
tas_spins = 1;
return (tas_spins);
}
|