Path: blob/master/src/java.base/share/native/libjava/Thread.c
41149 views
/*1* Copyright (c) 1994, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/*-26* Stuff for dealing with threads.27* originally in threadruntime.c, Sun Sep 22 12:09:39 199128*/2930#include "jni.h"31#include "jvm.h"3233#include "java_lang_Thread.h"3435#define THD "Ljava/lang/Thread;"36#define OBJ "Ljava/lang/Object;"37#define STE "Ljava/lang/StackTraceElement;"38#define STR "Ljava/lang/String;"3940#define ARRAY_LENGTH(a) (sizeof(a)/sizeof(a[0]))4142static JNINativeMethod methods[] = {43{"start0", "()V", (void *)&JVM_StartThread},44{"stop0", "(" OBJ ")V", (void *)&JVM_StopThread},45{"isAlive", "()Z", (void *)&JVM_IsThreadAlive},46{"suspend0", "()V", (void *)&JVM_SuspendThread},47{"resume0", "()V", (void *)&JVM_ResumeThread},48{"setPriority0", "(I)V", (void *)&JVM_SetThreadPriority},49{"yield", "()V", (void *)&JVM_Yield},50{"sleep", "(J)V", (void *)&JVM_Sleep},51{"currentThread", "()" THD, (void *)&JVM_CurrentThread},52{"interrupt0", "()V", (void *)&JVM_Interrupt},53{"holdsLock", "(" OBJ ")Z", (void *)&JVM_HoldsLock},54{"getThreads", "()[" THD, (void *)&JVM_GetAllThreads},55{"dumpThreads", "([" THD ")[[" STE, (void *)&JVM_DumpThreads},56{"setNativeName", "(" STR ")V", (void *)&JVM_SetNativeThreadName},57};5859#undef THD60#undef OBJ61#undef STE62#undef STR6364JNIEXPORT void JNICALL65Java_java_lang_Thread_registerNatives(JNIEnv *env, jclass cls)66{67(*env)->RegisterNatives(env, cls, methods, ARRAY_LENGTH(methods));68}6970JNIEXPORT void JNICALL71Java_java_lang_Thread_clearInterruptEvent(JNIEnv *env, jclass cls)72{73#if defined(_WIN32)74// Need to reset the interrupt event used by Process.waitFor75ResetEvent((HANDLE) JVM_GetThreadInterruptEvent());76#endif77}787980