141142143144145146147148149
assertEquals(fileLength, writer.getMappedLength()); } } void setFileLength(long length) throws InterruptedException { Thread t = new Thread(new FileSetLength(file, length)); t.run(); t.join(); }
140141142143144145146147148
assertEquals(fileLength, reader.getMappedLength()); } } void setFileLength(long length) throws InterruptedException { Thread t = new Thread(new FileSetLength(file, length)); t.run(); t.join(); }