summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/os_win/os_sleep.c
blob: b9a8cc2e54536929fd8665f19709ad2139df9722 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*-
 * 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(long seconds, long micro_seconds)
{
	Sleep(seconds * 1000 + micro_seconds / 1000);
}