jdk/src/solaris/native/sun/nio/ch/IOUtil.c
author simonis
Mon, 20 Jan 2014 09:24:25 +0100
changeset 22604 9b394795e216
parent 14342 8435a30053c1
child 22631 ac85b05a53f4
permissions -rw-r--r--
8031997: PPC64: Make the various POLL constants system dependant Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 13024
diff changeset
     2
 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#include <sys/types.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#include <string.h>
12872
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
    28
#include <sys/resource.h>
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
    29
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "jni.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#include "jni_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "jvm.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "jlong.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "sun_nio_ch_IOUtil.h"
12872
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
    35
#include "java_lang_Integer.h"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#include "nio.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#include "nio_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
static jfieldID fd_fdID;        /* for jint 'fd' in java.io.FileDescriptor */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
Java_sun_nio_ch_IOUtil_initIDs(JNIEnv *env, jclass clazz)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    clazz = (*env)->FindClass(env, "java/io/FileDescriptor");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    fd_fdID = (*env)->GetFieldID(env, clazz, "fd", "I");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
Java_sun_nio_ch_IOUtil_randomBytes(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                                  jbyteArray randArray)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    JNU_ThrowByName(env, "java/lang/UnsupportedOperationException", NULL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    return JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
JNIEXPORT jint JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
Java_sun_nio_ch_IOUtil_fdVal(JNIEnv *env, jclass clazz, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    return (*env)->GetIntField(env, fdo, fd_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
Java_sun_nio_ch_IOUtil_setfdVal(JNIEnv *env, jclass clazz, jobject fdo, jint val)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    (*env)->SetIntField(env, fdo, fd_fdID, val);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
static int
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
configureBlocking(int fd, jboolean blocking)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    int flags = fcntl(fd, F_GETFL);
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    73
    int newflags = blocking ? (flags & ~O_NONBLOCK) : (flags | O_NONBLOCK);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    75
    return (flags == newflags) ? 0 : fcntl(fd, F_SETFL, newflags);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
JNIEXPORT void JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
Java_sun_nio_ch_IOUtil_configureBlocking(JNIEnv *env, jclass clazz,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                         jobject fdo, jboolean blocking)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    if (configureBlocking(fdval(env, fdo), blocking) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        JNU_ThrowIOExceptionWithLastError(env, "Configure blocking failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    86
JNIEXPORT jlong JNICALL
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    87
Java_sun_nio_ch_IOUtil_makePipe(JNIEnv *env, jobject this, jboolean blocking)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    int fd[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    if (pipe(fd) < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        JNU_ThrowIOExceptionWithLastError(env, "Pipe failed");
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    93
        return 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    95
    if (blocking == JNI_FALSE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        if ((configureBlocking(fd[0], JNI_FALSE) < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            || (configureBlocking(fd[1], JNI_FALSE) < 0)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            JNU_ThrowIOExceptionWithLastError(env, "Configure blocking failed");
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
    99
            close(fd[0]);
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   100
            close(fd[1]);
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   101
            return 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   104
    return ((jlong) fd[0] << 32) | (jlong) fd[1];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
JNIEXPORT jboolean JNICALL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
Java_sun_nio_ch_IOUtil_drain(JNIEnv *env, jclass cl, jint fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    char buf[128];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    int tn = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        int n = read(fd, buf, sizeof(buf));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        tn += n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        if ((n < 0) && (errno != EAGAIN))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            JNU_ThrowIOExceptionWithLastError(env, "Drain");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        if (n == (int)sizeof(buf))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        return (tn > 0) ? JNI_TRUE : JNI_FALSE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
12872
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   124
JNIEXPORT jint JNICALL
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   125
Java_sun_nio_ch_IOUtil_fdLimit(JNIEnv *env, jclass this)
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   126
{
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   127
    struct rlimit rlp;
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   128
    if (getrlimit(RLIMIT_NOFILE, &rlp) < 0) {
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   129
        JNU_ThrowIOExceptionWithLastError(env, "getrlimit failed");
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   130
        return -1;
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   131
    }
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   132
    if (rlp.rlim_max < 0 || rlp.rlim_max > java_lang_Integer_MAX_VALUE) {
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   133
        return java_lang_Integer_MAX_VALUE;
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   134
    } else {
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   135
        return (jint)rlp.rlim_max;
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   136
    }
16fa902b1469 7172826: (se) Selector based on the Solaris event port mechanism
alanb
parents: 7668
diff changeset
   137
}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
13024
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   139
JNIEXPORT jint JNICALL
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   140
Java_sun_nio_ch_IOUtil_iovMax(JNIEnv *env, jclass this)
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   141
{
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   142
    jlong iov_max = sysconf(_SC_IOV_MAX);
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   143
    if (iov_max == -1)
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   144
        iov_max = 16;
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   145
    return (jint)iov_max;
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   146
}
ada1a7c54e84 7176485: (bf) Allow temporary buffer cache to grow to IOV_MAX
alanb
parents: 12872
diff changeset
   147
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
/* Declared in nio_util.h for use elsewhere in NIO */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
convertReturnVal(JNIEnv *env, jint n, jboolean reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    if (n > 0) /* Number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        return n;
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   155
    else if (n == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        if (reading) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            return IOS_EOF; /* EOF is -1 in javaland */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    }
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   162
    else if (errno == EAGAIN)
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   163
        return IOS_UNAVAILABLE;
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   164
    else if (errno == EINTR)
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   165
        return IOS_INTERRUPTED;
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   166
    else {
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   167
        const char *msg = reading ? "Read failed" : "Write failed";
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   168
        JNU_ThrowIOExceptionWithLastError(env, msg);
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   169
        return IOS_THROWN;
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   170
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
/* Declared in nio_util.h for use elsewhere in NIO */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
jlong
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
convertLongReturnVal(JNIEnv *env, jlong n, jboolean reading)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    if (n > 0) /* Number of bytes written */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return n;
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   180
    else if (n == 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        if (reading) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            return IOS_EOF; /* EOF is -1 in javaland */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
6520
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   187
    else if (errno == EAGAIN)
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   188
        return IOS_UNAVAILABLE;
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   189
    else if (errno == EINTR)
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   190
        return IOS_INTERRUPTED;
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   191
    else {
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   192
        const char *msg = reading ? "Read failed" : "Write failed";
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   193
        JNU_ThrowIOExceptionWithLastError(env, msg);
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   194
        return IOS_THROWN;
0e7cf575332e 6981145: (se) Eliminate JNI*Critical when creating pipes and other cleanups
martin
parents: 5506
diff changeset
   195
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
jint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
fdval(JNIEnv *env, jobject fdo)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    return (*env)->GetIntField(env, fdo, fd_fdID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
}