| 140 | } |
| 141 | |
| 142 | static JNIEnv* attachThread(const char* name) { |
| 143 | JNIEnv* jni; |
| 144 | JavaVMAttachArgs args = {JNI_VERSION_1_6, (char*)name, NULL}; |
| 145 | return _vm->AttachCurrentThreadAsDaemon((void**)&jni, &args) == 0 ? jni : NULL; |
| 146 | } |
| 147 | |
| 148 | static void detachThread() { |
| 149 | _vm->DetachCurrentThread(); |
nothing calls this directly
no outgoing calls
no test coverage detected