Bill Fraser
Bill Fraser
@dependabot rebase
Thanks! Unfortunately, adding such functionality would be hard to do correctly. Currently, each read blocks the caller while it fetches the block. Because the block size is typically quite small,...
As a quick workaround, you could also experiment with increasing the block size. The default is 128 KiB (0x20000 bytes); you could bump this up to several megabytes and effectively...
It'll mean the first access of each block will take much longer. Say you set the block size to 10M. The kernel still issues individual read calls with pretty small...
re: #3
Thanks for the review! I'll address your main points: > This is a fairly old library, and since Rust 1.9.0, `exec` has been [built into Rust](https://doc.rust-lang.org/std/os/unix/process/trait.CommandExt.html#tymethod.exec), but only for Unix-like...
I've added `wexecvp` (and family) to `libc`. Once it is released, I can remove it from here and update the libc dependency.