mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 06:03:02 +01:00
28 lines
703 B
C++
28 lines
703 B
C++
// Copyright (c) 2006-2018 Maxim Khizhinsky
|
|
//
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef CDSLIB_OS_THREAD_H
|
|
#define CDSLIB_OS_THREAD_H
|
|
|
|
#include <thread>
|
|
#include <cds/details/defs.h>
|
|
|
|
#if CDS_OS_TYPE == CDS_OS_WIN32 || CDS_OS_TYPE == CDS_OS_WIN64 || CDS_OS_TYPE == CDS_OS_MINGW
|
|
# include <cds/os/win/thread.h>
|
|
#else
|
|
# include <cds/os/posix/thread.h>
|
|
#endif
|
|
|
|
namespace cds { namespace OS {
|
|
|
|
/// Default backoff::yield implementation
|
|
static inline void backoff()
|
|
{
|
|
std::this_thread::yield();
|
|
}
|
|
}} // namespace cds::OS
|
|
|
|
#endif // #ifndef CDSLIB_OS_THREAD_H
|