mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
39 lines
803 B
C
39 lines
803 B
C
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 1997-2005
|
|
* Sleepycat Software. All rights reserved.
|
|
*
|
|
* $Id: os_sleep.c,v 12.1 2005/06/16 20:23:30 bostic Exp $
|
|
*/
|
|
|
|
#include "db_config.h"
|
|
|
|
#include "db_int.h"
|
|
|
|
/*
|
|
* __os_sleep --
|
|
* Yield the processor for a period of time.
|
|
*/
|
|
void
|
|
__os_sleep(dbenv, secs, usecs)
|
|
DB_ENV *dbenv;
|
|
u_long secs, usecs; /* Seconds and microseconds. */
|
|
{
|
|
COMPQUIET(dbenv, NULL);
|
|
|
|
/* Don't require that the values be normalized. */
|
|
for (; usecs >= 1000000; ++secs, usecs -= 1000000)
|
|
;
|
|
|
|
if (DB_GLOBAL(j_sleep) != NULL) {
|
|
DB_GLOBAL(j_sleep)(secs, usecs);
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* It's important that we yield the processor here so that other
|
|
* processes or threads are permitted to run.
|
|
*/
|
|
Sleep(secs * 1000 + usecs / 1000);
|
|
}
|