equal
deleted
inserted
replaced
53 static final Iocp defaultIocp = defaultIocp(); |
53 static final Iocp defaultIocp = defaultIocp(); |
54 private static Iocp defaultIocp() { |
54 private static Iocp defaultIocp() { |
55 try { |
55 try { |
56 return new Iocp(null, ThreadPool.createDefault()).start(); |
56 return new Iocp(null, ThreadPool.createDefault()).start(); |
57 } catch (IOException ioe) { |
57 } catch (IOException ioe) { |
58 InternalError e = new InternalError(); |
58 throw new InternalError(ioe); |
59 e.initCause(ioe); |
|
60 throw e; |
|
61 } |
59 } |
62 } |
60 } |
63 } |
61 } |
64 |
62 |
65 // Used for force/truncate/size methods |
63 // Used for force/truncate/size methods |