Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/native/java/lang/Thread.c
38829 views
/*1* Copyright (c) 1994, 2012, 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{"countStackFrames", "()I", (void *)&JVM_CountStackFrames},53{"interrupt0", "()V", (void *)&JVM_Interrupt},54{"isInterrupted", "(Z)Z", (void *)&JVM_IsInterrupted},55{"holdsLock", "(" OBJ ")Z", (void *)&JVM_HoldsLock},56{"getThreads", "()[" THD, (void *)&JVM_GetAllThreads},57{"dumpThreads", "([" THD ")[[" STE, (void *)&JVM_DumpThreads},58{"setNativeName", "(" STR ")V", (void *)&JVM_SetNativeThreadName},59};6061#undef THD62#undef OBJ63#undef STE64#undef STR6566JNIEXPORT void JNICALL67Java_java_lang_Thread_registerNatives(JNIEnv *env, jclass cls)68{69(*env)->RegisterNatives(env, cls, methods, ARRAY_LENGTH(methods));70}717273