X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=cds%2Fthreading%2Fdetails%2Fmsvc_manager.h;h=2aaffd0e39366275341382988b7a851b69fb2cb3;hp=c6660a013e0bba0288927b20e8cb3439aef24956;hb=759ffa51fb865adbebbfdb44273f9b83ec7cc8f3;hpb=e4c3bdf5ffc8ee1b49c79bd1f3ad462f58e8ab53 diff --git a/cds/threading/details/msvc_manager.h b/cds/threading/details/msvc_manager.h index c6660a01..2aaffd0e 100644 --- a/cds/threading/details/msvc_manager.h +++ b/cds/threading/details/msvc_manager.h @@ -1,7 +1,35 @@ -//$$CDS-header$$ +/* + This file is a part of libcds - Concurrent Data Structures library -#ifndef __CDS_THREADING_DETAILS_MSVC_MANAGER_H -#define __CDS_THREADING_DETAILS_MSVC_MANAGER_H + (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2017 + + Source code repo: http://github.com/khizmax/libcds/ + Download: http://sourceforge.net/projects/libcds/files/ + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ + +#ifndef CDSLIB_THREADING_DETAILS_MSVC_MANAGER_H +#define CDSLIB_THREADING_DETAILS_MSVC_MANAGER_H #if !( CDS_COMPILER == CDS_COMPILER_MSVC || (CDS_COMPILER == CDS_COMPILER_INTEL && CDS_OS_INTERFACE == CDS_OSI_WINDOWS)) # error "threading/details/msvc_manager.h may be used only with Microsoft Visual C++ / Intel C++ compiler" @@ -81,9 +109,9 @@ namespace cds { namespace threading { /// This method must be called in end of thread execution static void detachThread() { - assert( _threadData() ); + assert( _threadData()); - if ( _threadData()->fini() ) + if ( _threadData()->fini()) destroy_thread_data(); } @@ -95,30 +123,6 @@ namespace cds { namespace threading { return p; } - /// Get gc::HP thread GC implementation for current thread - /** - The object returned may be uninitialized if you did not call attachThread in the beginning of thread execution - or if you did not use gc::HP. - To initialize gc::HP GC you must constuct cds::gc::HP object in the beginning of your application - */ - static gc::HP::thread_gc_impl& getHZPGC() - { - assert( _threadData()->m_hpManager ); - return *(_threadData()->m_hpManager); - } - - /// Get gc::PTB thread GC implementation for current thread - /** - The object returned may be uninitialized if you did not call attachThread in the beginning of thread execution - or if you did not use gc::PTB. - To initialize gc::PTB GC you must constuct cds::gc::PTB object in the beginning of your application - */ - static gc::PTB::thread_gc_impl& getPTBGC() - { - assert( _threadData()->m_ptbManager ); - return *(_threadData()->m_ptbManager); - } - //@cond static size_t fake_current_processor() { @@ -131,4 +135,4 @@ namespace cds { namespace threading { }} // namespace cds::threading //@endcond -#endif // #ifndef __CDS_THREADING_DETAILS_MSVC_MANAGER_H +#endif // #ifndef CDSLIB_THREADING_DETAILS_MSVC_MANAGER_H