#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)os_spin.c 10.10 (Sleepycat) 10/12/98";
#endif
#ifndef NO_SYSTEM_INCLUDES
#include <sys/types.h>
#if defined(HAVE_PSTAT_GETDYNAMIC)
#include <sys/pstat.h>
#endif
#include <limits.h>
#include <unistd.h>
#endif
#include "db_int.h"
#include "os_jump.h"
#if defined(HAVE_PSTAT_GETDYNAMIC)
static int
__os_pstat_getdynamic()
{
struct pst_dynamic psd;
return (pstat_getdynamic(&psd,
sizeof(psd), (size_t)1, 0) == -1 ? 1 : psd.psd_proc_cnt);
}
#endif
#if defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_ONLN)
static int
__os_sysconf()
{
int nproc;
return ((nproc = sysconf(_SC_NPROCESSORS_ONLN)) > 1 ? nproc : 1);
}
#endif
int
__os_spin()
{
if (DB_GLOBAL(db_tsl_spins) != 0)
return (DB_GLOBAL(db_tsl_spins));
DB_GLOBAL(db_tsl_spins) = 1;
#if defined(HAVE_PSTAT_GETDYNAMIC)
DB_GLOBAL(db_tsl_spins) = __os_pstat_getdynamic();
#endif
#if defined(HAVE_SYSCONF) && defined(_SC_NPROCESSORS_ONLN)
DB_GLOBAL(db_tsl_spins) = __os_sysconf();
#endif
DB_GLOBAL(db_tsl_spins) *= 50;
return (DB_GLOBAL(db_tsl_spins));
}
void
__os_yield(usecs)
u_long usecs;
{
if (__db_jump.j_yield != NULL && __db_jump.j_yield() == 0)
return;
__os_sleep(0, usecs);
}