/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 1998
* Sleepycat Software. All rights reserved.
*/
#include "config.h"
#ifndef lint
#endif /* not lint */
#ifndef NO_SYSTEM_INCLUDES
#if defined(HAVE_PSTAT_GETDYNAMIC)
#endif
#include <limits.h>
#include <unistd.h>
#endif
#include "db_int.h"
#include "os_jump.h"
#if defined(HAVE_PSTAT_GETDYNAMIC)
/*
* __os_pstat_getdynamic --
*/
static int
{
return (pstat_getdynamic(&psd,
}
#endif
#if defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_ONLN)
/*
* __os_sysconf --
* Solaris, Linux.
*/
static int
{
int nproc;
}
#endif
/*
* __os_spin --
* Return the number of default spins before blocking.
*
* PUBLIC: int __os_spin __P((void));
*/
int
{
/*
* If the application specified a value or we've already figured it
* out, return it.
*
* XXX
* We don't want to repeatedly call the underlying function because
* it can be expensive (e.g., requiring multiple filesystem accesses
* under Debian Linux).
*/
if (DB_GLOBAL(db_tsl_spins) != 0)
return (DB_GLOBAL(db_tsl_spins));
#if defined(HAVE_PSTAT_GETDYNAMIC)
#endif
#if defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_ONLN)
#endif
/*
* Spin 50 times per processor, we have anecdotal evidence that this
* is a reasonable value.
*/
return (DB_GLOBAL(db_tsl_spins));
}
/*
* __os_yield --
* Yield the processor.
*
* PUBLIC: void __os_yield __P((u_long));
*/
void
{
return;
__os_sleep(0, usecs);
}