mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 17:02:56 +00:00
## Problem duplicated deps ## Summary of changes little bit of fiddling with deps to reduce duplicates needs consideration: https://github.com/notify-rs/notify/blob/main/CHANGELOG.md#notify-600-2023-05-17
18 lines
564 B
Rust
18 lines
564 B
Rust
use nix::fcntl::{fcntl, OFlag, F_GETFL, F_SETFL};
|
|
use std::os::unix::io::RawFd;
|
|
|
|
/// Put a file descriptor into non-blocking mode
|
|
pub fn set_nonblock(fd: RawFd) -> Result<(), std::io::Error> {
|
|
let bits = fcntl(fd, F_GETFL)?;
|
|
|
|
// If F_GETFL returns some unknown bits, they should be valid
|
|
// for passing back to F_SETFL, too. If we left them out, the F_SETFL
|
|
// would effectively clear them, which is not what we want.
|
|
let mut flags = OFlag::from_bits_retain(bits);
|
|
flags |= OFlag::O_NONBLOCK;
|
|
|
|
fcntl(fd, F_SETFL(flags))?;
|
|
|
|
Ok(())
|
|
}
|