This fixes #15 by ignoring the error 'IOError(Os { code: 4, kind: Interrupted, message: "Interrupted system call" })'. I don't know if this is the correct way to handle the error.
The documentation says the following about std::io::ErrorKind::Interrupted:
This operation was interrupted.
Interrupted operations can typically be retried.
This fixes #15 by ignoring the error 'IOError(Os { code: 4, kind: Interrupted, message: "Interrupted system call" })'. I don't know if this is the correct way to handle the error.
The documentation says the following about
std::io::ErrorKind::Interrupted
: