mirror of
https://github.com/PurpleI2P/Boost-for-Android-Prebuilt
synced 2025-01-10 06:48:10 +00:00
114 lines
3.2 KiB
C++
114 lines
3.2 KiB
C++
/*
|
|
* Copyright 2010 Vicente J. Botet Escriba
|
|
* Copyright 2015 Andrey Semashev
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* See http://www.boost.org/LICENSE_1_0.txt
|
|
*/
|
|
|
|
#ifndef BOOST_WINAPI_SRW_LOCK_HPP_INCLUDED_
|
|
#define BOOST_WINAPI_SRW_LOCK_HPP_INCLUDED_
|
|
|
|
#include <boost/winapi/config.hpp>
|
|
|
|
#ifdef BOOST_HAS_PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#if BOOST_USE_WINAPI_VERSION < BOOST_WINAPI_VERSION_WIN6 \
|
|
|| (defined(_MSC_VER) && _MSC_VER < 1600)
|
|
// Windows SDK 6.0A, which is used by MSVC 9, does not have TryAcquireSRWLock* neither in headers nor in .lib files,
|
|
// although the functions are present in later SDKs since Windows API version 6.
|
|
#define BOOST_WINAPI_NO_TRY_ACQUIRE_SRWLOCK
|
|
#endif
|
|
|
|
#if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
|
|
|
|
#include <boost/winapi/basic_types.hpp>
|
|
|
|
#if !defined( BOOST_USE_WINDOWS_H )
|
|
extern "C" {
|
|
struct _RTL_SRWLOCK;
|
|
|
|
BOOST_SYMBOL_IMPORT boost::winapi::VOID_ BOOST_WINAPI_WINAPI_CC
|
|
InitializeSRWLock(::_RTL_SRWLOCK* SRWLock);
|
|
|
|
BOOST_SYMBOL_IMPORT boost::winapi::VOID_ BOOST_WINAPI_WINAPI_CC
|
|
ReleaseSRWLockExclusive(::_RTL_SRWLOCK* SRWLock);
|
|
|
|
BOOST_SYMBOL_IMPORT boost::winapi::VOID_ BOOST_WINAPI_WINAPI_CC
|
|
ReleaseSRWLockShared(::_RTL_SRWLOCK* SRWLock);
|
|
|
|
BOOST_SYMBOL_IMPORT boost::winapi::VOID_ BOOST_WINAPI_WINAPI_CC
|
|
AcquireSRWLockExclusive(::_RTL_SRWLOCK* SRWLock);
|
|
|
|
BOOST_SYMBOL_IMPORT boost::winapi::VOID_ BOOST_WINAPI_WINAPI_CC
|
|
AcquireSRWLockShared(::_RTL_SRWLOCK* SRWLock);
|
|
|
|
#if !defined( BOOST_WINAPI_NO_TRY_ACQUIRE_SRWLOCK )
|
|
BOOST_SYMBOL_IMPORT boost::winapi::BOOLEAN_ BOOST_WINAPI_WINAPI_CC
|
|
TryAcquireSRWLockExclusive(::_RTL_SRWLOCK* SRWLock);
|
|
|
|
BOOST_SYMBOL_IMPORT boost::winapi::BOOLEAN_ BOOST_WINAPI_WINAPI_CC
|
|
TryAcquireSRWLockShared(::_RTL_SRWLOCK* SRWLock);
|
|
#endif
|
|
} // extern "C"
|
|
#endif
|
|
|
|
namespace boost {
|
|
namespace winapi {
|
|
|
|
typedef struct BOOST_MAY_ALIAS _RTL_SRWLOCK {
|
|
PVOID_ Ptr;
|
|
} SRWLOCK_, *PSRWLOCK_;
|
|
|
|
#if defined( BOOST_USE_WINDOWS_H )
|
|
#define BOOST_WINAPI_SRWLOCK_INIT SRWLOCK_INIT
|
|
#else
|
|
#define BOOST_WINAPI_SRWLOCK_INIT {0}
|
|
#endif
|
|
|
|
BOOST_FORCEINLINE VOID_ InitializeSRWLock(PSRWLOCK_ SRWLock)
|
|
{
|
|
::InitializeSRWLock(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
|
|
BOOST_FORCEINLINE VOID_ ReleaseSRWLockExclusive(PSRWLOCK_ SRWLock)
|
|
{
|
|
::ReleaseSRWLockExclusive(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
|
|
BOOST_FORCEINLINE VOID_ ReleaseSRWLockShared(PSRWLOCK_ SRWLock)
|
|
{
|
|
::ReleaseSRWLockShared(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
|
|
BOOST_FORCEINLINE VOID_ AcquireSRWLockExclusive(PSRWLOCK_ SRWLock)
|
|
{
|
|
::AcquireSRWLockExclusive(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
|
|
BOOST_FORCEINLINE VOID_ AcquireSRWLockShared(PSRWLOCK_ SRWLock)
|
|
{
|
|
::AcquireSRWLockShared(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
|
|
#if !defined( BOOST_WINAPI_NO_TRY_ACQUIRE_SRWLOCK )
|
|
BOOST_FORCEINLINE BOOLEAN_ TryAcquireSRWLockExclusive(PSRWLOCK_ SRWLock)
|
|
{
|
|
return ::TryAcquireSRWLockExclusive(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
|
|
BOOST_FORCEINLINE BOOLEAN_ TryAcquireSRWLockShared(PSRWLOCK_ SRWLock)
|
|
{
|
|
return ::TryAcquireSRWLockShared(reinterpret_cast< ::_RTL_SRWLOCK* >(SRWLock));
|
|
}
|
|
#endif
|
|
|
|
}
|
|
}
|
|
|
|
#endif // BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
|
|
|
|
#endif // BOOST_WINAPI_SRW_LOCK_HPP_INCLUDED_
|