< prev index next >

src/hotspot/share/utilities/globalDefinitions_visCPP.hpp

Print this page

        

*** 151,162 **** // Formatting. #define FORMAT64_MODIFIER "I64" #define offset_of(klass,field) offsetof(klass,field) ! #ifndef USE_LIBRARY_BASED_TLS_ONLY ! #define THREAD_LOCAL_DECL __declspec( thread ) #endif // Inlining support // MSVC has '__declspec(noinline)' but according to the official documentation // it only applies to member functions. There are reports though which pretend --- 151,162 ---- // Formatting. #define FORMAT64_MODIFIER "I64" #define offset_of(klass,field) offsetof(klass,field) ! #if _MSC_VER < 1900 ! #define thread_local __declspec(thread) #endif // Inlining support // MSVC has '__declspec(noinline)' but according to the official documentation // it only applies to member functions. There are reports though which pretend
< prev index next >