mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8286666: JEP 429: Implementation of Scoped Values (Incubator)
Reviewed-by: psandoz, dlong, alanb, mcimadamore
This commit is contained in:
parent
ccc69af966
commit
221e1a4260
61 changed files with 2889 additions and 230 deletions
|
@ -352,7 +352,7 @@ class java_lang_Thread : AllStatic {
|
|||
static int _tid_offset;
|
||||
static int _continuation_offset;
|
||||
static int _park_blocker_offset;
|
||||
static int _extentLocalBindings_offset;
|
||||
static int _scopedValueBindings_offset;
|
||||
JFR_ONLY(static int _jfr_epoch_offset;)
|
||||
|
||||
static void compute_offsets();
|
||||
|
@ -398,8 +398,8 @@ class java_lang_Thread : AllStatic {
|
|||
static JvmtiThreadState* jvmti_thread_state(oop java_thread);
|
||||
static void set_jvmti_thread_state(oop java_thread, JvmtiThreadState* state);
|
||||
|
||||
// Clear all extent local bindings on error
|
||||
static void clear_extentLocalBindings(oop java_thread);
|
||||
// Clear all scoped value bindings on error
|
||||
static void clear_scopedValueBindings(oop java_thread);
|
||||
|
||||
// Blocker object responsible for thread parking
|
||||
static oop park_blocker(oop java_thread);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue