mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-08-01 05:34:36 +02:00
Merge branch 'develop'
This commit is contained in:
@@ -65,6 +65,15 @@ extern "C" __declspec(dllimport) void __stdcall DeleteCriticalSection(::_RTL_CRI
|
|||||||
|
|
||||||
typedef ::CRITICAL_SECTION critical_section;
|
typedef ::CRITICAL_SECTION critical_section;
|
||||||
|
|
||||||
|
#if BOOST_PLAT_WINDOWS_RUNTIME
|
||||||
|
using ::InitializeCriticalSectionEx;
|
||||||
|
#else
|
||||||
|
using ::InitializeCriticalSection;
|
||||||
|
#endif
|
||||||
|
using ::EnterCriticalSection;
|
||||||
|
using ::LeaveCriticalSection;
|
||||||
|
using ::DeleteCriticalSection;
|
||||||
|
|
||||||
#endif // #ifndef BOOST_USE_WINDOWS_H
|
#endif // #ifndef BOOST_USE_WINDOWS_H
|
||||||
|
|
||||||
class lightweight_mutex
|
class lightweight_mutex
|
||||||
|
@@ -22,6 +22,7 @@ run intrusive_ptr_move_test.cpp ;
|
|||||||
run intrusive_ref_counter_test.cpp ;
|
run intrusive_ref_counter_test.cpp ;
|
||||||
run atomic_count_test.cpp ;
|
run atomic_count_test.cpp ;
|
||||||
run lw_mutex_test.cpp ;
|
run lw_mutex_test.cpp ;
|
||||||
|
run lw_mutex_test.cpp : : : <define>BOOST_USE_WINDOWS_H : lw_mutex_test.win_h ;
|
||||||
compile-fail shared_ptr_assign_fail.cpp ;
|
compile-fail shared_ptr_assign_fail.cpp ;
|
||||||
compile-fail shared_ptr_delete_fail.cpp ;
|
compile-fail shared_ptr_delete_fail.cpp ;
|
||||||
compile-fail shared_ptr_compare_fail.cpp ;
|
compile-fail shared_ptr_compare_fail.cpp ;
|
||||||
|
Reference in New Issue
Block a user