< prev index next >

src/share/vm/runtime/thread.hpp

Print this page
rev 8362 : CMS fence eliding using fancy synchronization when using UseCondCardMark

@@ -633,10 +633,15 @@
   static void SpinAcquire(volatile int * Lock, const char * Name);
   static void SpinRelease(volatile int * Lock);
   static void muxAcquire(volatile intptr_t * Lock, const char * Name);
   static void muxAcquireW(volatile intptr_t * Lock, ParkEvent * ev);
   static void muxRelease(volatile intptr_t * Lock);
+
+ private:
+  void *_serialization_page;
+ public:
+  void *get_serialization_page();
 };
 
 // Inline implementation of Thread::current()
 // Thread::current is "hot" it's called > 128K times in the 1st 500 msecs of
 // startup.
< prev index next >