mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 17:44:40 +02:00
8295661: CompileTask::compile_id() should be passed as int
Reviewed-by: thartmann, dnsimon, never
This commit is contained in:
parent
86d588b035
commit
8e49fcdde4
9 changed files with 44 additions and 46 deletions
|
@ -312,10 +312,10 @@ public:
|
|||
TRAPS);
|
||||
|
||||
// Acquire any needed locks and assign a compile id
|
||||
static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
|
||||
static int assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
|
||||
|
||||
static void compiler_thread_loop();
|
||||
static uint get_compilation_id() { return _compilation_id; }
|
||||
static int get_compilation_id() { return _compilation_id; }
|
||||
|
||||
// Set _should_block.
|
||||
// Call this from the VM, with Threads_lock held and a safepoint requested.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue