/*-
* 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
#ifdef HAVE_SYS_TIME_H
#endif
#ifdef HAVE_SYS_SELECT_H
#endif
#include <errno.h>
#ifndef HAVE_SYS_TIME_H
#include <time.h>
#endif
#include <unistd.h>
#endif
#include "db_int.h"
#include "os_jump.h"
/*
* __os_sleep --
* Yield the processor for a period of time.
*
* PUBLIC: int __os_sleep __P((u_long, u_long));
*/
int
{
struct timeval t;
/* Don't require that the values be normalized. */
;
/*
* It's important that we yield the processor here so that other
* processes or threads are permitted to run.
*/
}