stub out set_oflags for unix i guess?

what do we do about unsupported stuff like that? silently return OK?
This commit is contained in:
Pat Hickey
2020-12-10 15:37:02 -08:00
parent cdb642b3d6
commit 03c92de5aa
3 changed files with 19 additions and 4 deletions

View File

@@ -34,6 +34,9 @@ pub enum Error {
#[error("Unexpected IoError: {0}")]
UnexpectedIo(#[source] std::io::Error),
#[error("Unsupported operation: {0}")]
Unsupported(String),
// Below this, all variants are from the `$errno` type:
/// Errno::TooBig: Argument list too long
#[error("TooBig: Argument list too long")]