diff src/share/vm/runtime/thread.hpp @ 1590:b17deadc902e

Merge
author coleenp
date Wed, 09 Jun 2010 13:53:58 -0400
parents 3a9de63b2209 b812ff5abc73
children bfc89697cccb
line wrap: on
line diff
--- a/src/share/vm/runtime/thread.hpp	Fri Jun 04 17:44:51 2010 -0400
+++ b/src/share/vm/runtime/thread.hpp	Wed Jun 09 13:53:58 2010 -0400
@@ -1577,6 +1577,7 @@
   CompileLog*   _log;
   CompileTask*  _task;
   CompileQueue* _queue;
+  BufferBlob*   _buffer_blob;
 
  public:
 
@@ -1595,6 +1596,9 @@
   ciEnv*        env()                            { return _env; }
   void          set_env(ciEnv* env)              { _env = env; }
 
+  BufferBlob*   get_buffer_blob()                { return _buffer_blob; }
+  void          set_buffer_blob(BufferBlob* b)   { _buffer_blob = b; };
+
   // Get/set the thread's logging information
   CompileLog*   log()                            { return _log; }
   void          init_log(CompileLog* log) {