in src/main/java/org/apache/datasketches/Files.java [147:155]
public static FileDescriptor getFD(final RandomAccessFile raf) {
FileDescriptor fd = null;
try {
fd = raf.getFD();
} catch (final IOException e) {
throw new RuntimeException(LS + "RandomAccessFile.getFD() failure" + LS + e);
}
return fd;
}