src/solaris/native/sun/nio/ch/NativeThread.c

Print this page

        

*** 31,41 **** #include "jlong.h" #include "sun_nio_ch_NativeThread.h" #include "nio_util.h" ! #ifdef __linux__ #include <pthread.h> #include <sys/signal.h> /* Also defined in src/solaris/native/java/net/linux_close.c */ #define INTERRUPT_SIGNAL (__SIGRTMAX - 2) --- 31,41 ---- #include "jlong.h" #include "sun_nio_ch_NativeThread.h" #include "nio_util.h" ! #ifndef __solaris__ #include <pthread.h> #include <sys/signal.h> /* Also defined in src/solaris/native/java/net/linux_close.c */ #define INTERRUPT_SIGNAL (__SIGRTMAX - 2)
*** 49,59 **** JNIEXPORT void JNICALL Java_sun_nio_ch_NativeThread_init(JNIEnv *env, jclass cl) { ! #ifdef __linux__ /* Install the null handler for INTERRUPT_SIGNAL. This might overwrite the * handler previously installed by java/net/linux_close.c, but that's okay * since neither handler actually does anything. We install our own * handler here simply out of paranoia; ultimately the two mechanisms --- 49,59 ---- JNIEXPORT void JNICALL Java_sun_nio_ch_NativeThread_init(JNIEnv *env, jclass cl) { ! #ifndef __solaris__ /* Install the null handler for INTERRUPT_SIGNAL. This might overwrite the * handler previously installed by java/net/linux_close.c, but that's okay * since neither handler actually does anything. We install our own * handler here simply out of paranoia; ultimately the two mechanisms
*** 72,91 **** } JNIEXPORT jlong JNICALL Java_sun_nio_ch_NativeThread_current(JNIEnv *env, jclass cl) { ! #ifdef __linux__ return (long)pthread_self(); #else return -1; #endif } JNIEXPORT void JNICALL Java_sun_nio_ch_NativeThread_signal(JNIEnv *env, jclass cl, jlong thread) { ! #ifdef __linux__ if (pthread_kill((pthread_t)thread, INTERRUPT_SIGNAL)) JNU_ThrowIOExceptionWithLastError(env, "Thread signal failed"); #endif } --- 72,91 ---- } JNIEXPORT jlong JNICALL Java_sun_nio_ch_NativeThread_current(JNIEnv *env, jclass cl) { ! #ifndef __solaris__ return (long)pthread_self(); #else return -1; #endif } JNIEXPORT void JNICALL Java_sun_nio_ch_NativeThread_signal(JNIEnv *env, jclass cl, jlong thread) { ! #ifndef __solaris__ if (pthread_kill((pthread_t)thread, INTERRUPT_SIGNAL)) JNU_ThrowIOExceptionWithLastError(env, "Thread signal failed"); #endif }