mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
14 lines
262 B
C++
14 lines
262 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
|
|
void SleepForNanoseconds(uint64_t nanoseconds);
|
|
|
|
void SleepForMicroseconds(uint64_t microseconds);
|
|
|
|
void SleepForMilliseconds(uint64_t milliseconds);
|
|
|
|
void SleepForSeconds(uint64_t seconds);
|