< prev index next >

src/hotspot/share/prims/jvm.cpp

Print this page
rev 50307 : [mq]: cont

*** 71,80 **** --- 71,81 ---- #include "runtime/thread.inline.hpp" #include "runtime/threadSMR.hpp" #include "runtime/vframe.inline.hpp" #include "runtime/vm_operations.hpp" #include "runtime/vm_version.hpp" + #include "runtime/continuation.hpp" #include "services/attachListener.hpp" #include "services/management.hpp" #include "services/threadService.hpp" #include "utilities/copy.hpp" #include "utilities/defaultStream.hpp"
*** 678,687 **** --- 679,694 ---- } return JNIHandles::make_local(env, new_obj()); JVM_END + // java.lang.Continuation ///////////////////////////////////////////////////// + + JVM_ENTRY(void, JVM_RegisterContinuationMethods(JNIEnv *env, jclass cls)) + CONT_RegisterNativeMethods(env, cls); + JVM_END + // java.io.File /////////////////////////////////////////////////////////////// JVM_LEAF(char*, JVM_NativePath(char* path)) JVMWrapper("JVM_NativePath"); return os::native_path(path);
< prev index next >