diff src/share/vm/compiler/compileBroker.hpp @ 4139:feb590a8497f

remove pollJavaQueue and related functionality, minimize diff against HotSpot in the compileBroker.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 00:41:15 +0100
parents 04b9a2566eec
children 716a2c5c0656
line wrap: on
line diff
--- a/src/share/vm/compiler/compileBroker.hpp	Sat Dec 17 22:03:44 2011 +0100
+++ b/src/share/vm/compiler/compileBroker.hpp	Sun Dec 18 00:41:15 2011 +0100
@@ -197,7 +197,7 @@
   CompileTask* first()                           { return _first; }
   CompileTask* last()                            { return _last;  }
 
-  CompileTask* get(bool& interrupt);
+  CompileTask* get();
 
   bool         is_empty() const                  { return _first == NULL; }
   int          size()     const                  { return _size;          }
@@ -407,8 +407,6 @@
   static void print_compiler_threads_on(outputStream* st);
 
   static void add_method_to_queue(klassOop k, Symbol* name, Symbol* signature);
-
-  static void notify_java_queue();
 };
 
 #endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP