Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/net/Socket/libNativeThread.c
41149 views
1
/*
2
* Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
#include<jni.h>
24
#include<signal.h>
25
#include<stdlib.h>
26
#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)
27
#include <pthread.h>
28
#endif
29
30
/*
31
* Class: NativeThread
32
* Method: getID
33
* Signature: ()J
34
*/
35
JNIEXPORT jlong JNICALL Java_NativeThread_getID(JNIEnv *env, jclass class)
36
{
37
#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)
38
return (jlong)pthread_self();
39
#else
40
return 0;
41
#endif
42
}
43
44
/*
45
* Class: NativeThread
46
* Method: signal
47
* Signature: (JI)I
48
*/
49
JNIEXPORT jint JNICALL Java_NativeThread_signal(JNIEnv *env, jclass class, jlong thread, jint sig)
50
{
51
#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)
52
return pthread_kill((pthread_t)thread, sig);
53
#else
54
return 0;
55
#endif
56
}
57
58
/*
59
* Class: NativeThread
60
* Method: getSIGPIPE
61
* Signature: ()I
62
*/
63
JNIEXPORT jint JNICALL Java_NativeThread_getSIGPIPE(JNIEnv *env, jclass class)
64
{
65
#if defined(__linux__) || defined(_ALLBSD_SOURCE) || defined(_AIX)
66
return SIGPIPE;
67
#else
68
return 0;
69
#endif
70
}
71
72