< prev index next >

src/os/solaris/vm/thread_solaris.inline.hpp

Print this page

        

@@ -27,24 +27,8 @@
 
 #ifndef SHARE_VM_RUNTIME_THREAD_INLINE_HPP_SCOPE
 #error "This file should only be included from thread.inline.hpp"
 #endif
 
-#include "runtime/thread.hpp"
-#include "runtime/threadLocalStorage.hpp"
-
-// Thread::current is "hot" it's called > 128K times in the 1st 500 msecs of
-// startup.
-// ThreadLocalStorage::thread is warm -- it's called > 16K times in the same
-// period.   Thread::current() now calls ThreadLocalStorage::thread() directly.
-// For SPARC, to avoid excessive register window spill-fill faults,
-// we aggressively inline these routines.
-
-inline void ThreadLocalStorage::set_thread(Thread* thread) {
-  _thr_current = thread;
-}
-
-inline Thread* ThreadLocalStorage::thread()  {
-  return _thr_current;
-}
+// Nothing to do
 
 #endif // OS_SOLARIS_VM_THREAD_SOLARIS_INLINE_HPP
< prev index next >