jdk/src/solaris/classes/sun/nio/ch/InheritedChannel.java
changeset 10419 12c063b39232
parent 10351 e2cef0ef9e28
child 14342 8435a30053c1
equal deleted inserted replaced
10418:1d57022fdb6e 10419:12c063b39232
    62             dup2(devnull, 0);
    62             dup2(devnull, 0);
    63             dup2(devnull, 1);
    63             dup2(devnull, 1);
    64             dup2(devnull, 2);
    64             dup2(devnull, 2);
    65         } catch (IOException ioe) {
    65         } catch (IOException ioe) {
    66             // this shouldn't happen
    66             // this shouldn't happen
    67             throw new InternalError();
    67             throw new InternalError(ioe);
    68         }
    68         }
    69     }
    69     }
    70 
    70 
    71     /*
    71     /*
    72      * Override the implCloseSelectableChannel for each channel type - this
    72      * Override the implCloseSelectableChannel for each channel type - this