diff 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
line wrap: on
line diff
--- a/src/share/vm/runtime/thread.hpp	Wed Mar 07 14:35:22 2012 -0800
+++ b/src/share/vm/runtime/thread.hpp	Thu Mar 08 15:01:19 2012 +0100
@@ -734,7 +734,7 @@
   JavaThread*    _next;                          // The next thread in the Threads list
   oop            _threadObj;                     // The Java level thread object
 
-  // (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.
+  // (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.
   BufferBlob*   _buffer_blob;
   ciEnv*        _env;
   bool          _is_compiling;
@@ -1774,7 +1774,7 @@
 
   bool is_Compiler_thread() const                { return true; }
   // Hide this compiler thread from external view.
-  // (tw) For Graal, the compiler thread should be visible.
+  // (thomaswue) For Graal, the compiler thread should be visible.
   bool is_hidden_from_external_view() const      {
 #ifdef GRAAL
     return !DebugGraal;