< prev index next >

src/share/vm/runtime/thread.hpp

Print this page
rev 13526 : [mq]: 13512.patch

*** 2094,2104 **** static void add(JavaThread* p, bool force_daemon = false); static void remove(JavaThread* p); static bool includes(JavaThread* p); static JavaThread* first() { return _thread_list; } static void threads_do(ThreadClosure* tc); - static void parallel_java_threads_do(ThreadClosure* tc); // Initializes the vm and creates the vm thread static jint create_vm(JavaVMInitArgs* args, bool* canTryAgain); static void convert_vm_init_libraries_to_agents(); static void create_vm_init_libraries(); --- 2094,2103 ----
*** 2130,2140 **** // Apply "f->do_oop" to all root oops in all threads. // This version may only be called by sequential code. static void oops_do(OopClosure* f, CodeBlobClosure* cf); // This version may be called by sequential or parallel code. ! static void possibly_parallel_oops_do(bool is_par, OopClosure* f, CodeBlobClosure* cf, CodeBlobClosure* nmethods_cl = NULL); // This creates a list of GCTasks, one per thread. static void create_thread_roots_tasks(GCTaskQueue* q); // This creates a list of GCTasks, one per thread, for marking objects. static void create_thread_roots_marking_tasks(GCTaskQueue* q); --- 2129,2139 ---- // Apply "f->do_oop" to all root oops in all threads. // This version may only be called by sequential code. static void oops_do(OopClosure* f, CodeBlobClosure* cf); // This version may be called by sequential or parallel code. ! static void possibly_parallel_oops_do(bool is_par, OopClosure* f, CodeBlobClosure* cf); // This creates a list of GCTasks, one per thread. static void create_thread_roots_tasks(GCTaskQueue* q); // This creates a list of GCTasks, one per thread, for marking objects. static void create_thread_roots_marking_tasks(GCTaskQueue* q);
< prev index next >