Path: blob/master/test/jdk/java/net/Socket/libNativeThread.c
41149 views
/*1* Copyright (c) 2020, 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.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/22#include<jni.h>23#include<signal.h>24#include<stdlib.h>25#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)26#include <pthread.h>27#endif2829/*30* Class: NativeThread31* Method: getID32* Signature: ()J33*/34JNIEXPORT jlong JNICALL Java_NativeThread_getID(JNIEnv *env, jclass class)35{36#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)37return (jlong)pthread_self();38#else39return 0;40#endif41}4243/*44* Class: NativeThread45* Method: signal46* Signature: (JI)I47*/48JNIEXPORT jint JNICALL Java_NativeThread_signal(JNIEnv *env, jclass class, jlong thread, jint sig)49{50#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)51return pthread_kill((pthread_t)thread, sig);52#else53return 0;54#endif55}5657/*58* Class: NativeThread59* Method: getSIGPIPE60* Signature: ()I61*/62JNIEXPORT jint JNICALL Java_NativeThread_getSIGPIPE(JNIEnv *env, jclass class)63{64#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)65return SIGPIPE;66#else67return 0;68#endif69}707172