Skip to content

Commit

Permalink
Merge pull request #17451 from thallium/findScopedValueBindingsAssert
Browse files Browse the repository at this point in the history
Add the unimplemented assertion to Thread.findScopedValueBindings()
  • Loading branch information
babsingh committed May 26, 2023
2 parents 3bacb5a + 8e4c6d3 commit ec0eb13
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion runtime/jcl/common/thread.cpp
Expand Up @@ -616,7 +616,14 @@ Java_java_lang_Thread_setExtentLocalCache(JNIEnv *env, jclass unusedClass, jobje
jobject JNICALL
Java_java_lang_Thread_findScopedValueBindings(JNIEnv *env, jclass unusedClass)
{
/* TODO: Implement. See https://github.com/eclipse-openj9/openj9/issues/16677. */
/* Currently, this method is unused since there is no API or test that
* invokes this method in OpenJ9. If the assertion ever triggers, the
* draft implementation below should be completed and merged.
*
* Issue: https://github.com/eclipse-openj9/openj9/issues/16677.
* Implementation: https://github.com/eclipse-openj9/openj9/pull/17402.
*/
Assert_JCL_unimplemented();
return NULL;
}

Expand Down

0 comments on commit ec0eb13

Please sign in to comment.