summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/os_win/os_sleep.c
blob: 1d4b316488a5419f23fb9c28d8c1621b9310a89c (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
/*-
 * Copyright (c) 2014-2016 MongoDB, Inc.
 * Copyright (c) 2008-2014 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */

#include "wt_internal.h"

/*
 * __wt_sleep --
 *	Pause the thread of control.
 */
void
__wt_sleep(uint64_t seconds, uint64_t micro_seconds)
{
	/*
	 * If the caller wants a small pause, set to our
	 * smallest granularity.
	 */
	if (seconds == 0 && micro_seconds < WT_THOUSAND)
		micro_seconds = WT_THOUSAND;
	Sleep(seconds * WT_THOUSAND + micro_seconds / WT_THOUSAND);
}