comparison src/share/vm/runtime/thread.hpp @ 5056:2f2c6347fce4

comments cleanup/retagging
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 08 Mar 2012 15:01:19 +0100
parents 897b7d18bebc
children 120820e30baa
comparison
equal deleted inserted replaced
5053:c53115427ff9 5056:2f2c6347fce4
732 friend class VMStructs; 732 friend class VMStructs;
733 private: 733 private:
734 JavaThread* _next; // The next thread in the Threads list 734 JavaThread* _next; // The next thread in the Threads list
735 oop _threadObj; // The Java level thread object 735 oop _threadObj; // The Java level thread object
736 736
737 // (tw) Necessary for holding a compilation buffer and ci environment. Moved from CompilerThread to JavaThread in order to enable code installation from Java application code. 737 // (thomaswue) Necessary for holding a compilation buffer and ci environment. Moved from CompilerThread to JavaThread in order to enable code installation from Java application code.
738 BufferBlob* _buffer_blob; 738 BufferBlob* _buffer_blob;
739 ciEnv* _env; 739 ciEnv* _env;
740 bool _is_compiling; 740 bool _is_compiling;
741 741
742 #ifdef ASSERT 742 #ifdef ASSERT
1772 1772
1773 CompilerThread(CompileQueue* queue, CompilerCounters* counters); 1773 CompilerThread(CompileQueue* queue, CompilerCounters* counters);
1774 1774
1775 bool is_Compiler_thread() const { return true; } 1775 bool is_Compiler_thread() const { return true; }
1776 // Hide this compiler thread from external view. 1776 // Hide this compiler thread from external view.
1777 // (tw) For Graal, the compiler thread should be visible. 1777 // (thomaswue) For Graal, the compiler thread should be visible.
1778 bool is_hidden_from_external_view() const { 1778 bool is_hidden_from_external_view() const {
1779 #ifdef GRAAL 1779 #ifdef GRAAL
1780 return !DebugGraal; 1780 return !DebugGraal;
1781 #else 1781 #else
1782 return true; 1782 return true;