summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Walbran <qwandor@google.com>2023-04-26 14:04:44 +0100
committerAndrew Walbran <qwandor@google.com>2023-05-22 10:57:35 +0100
commit2e5bc8b2038b6847baad1cf11b0697b5bc67a028 (patch)
tree169c4f6e78db05cf95e7e6ed8d086bb3f77b84a3
parentee2e1deff805692c4a4cc9172b458b8a5edca44f (diff)
downloadnix-2e5bc8b2038b6847baad1cf11b0697b5bc67a028.zip
Update to bitflags 2.3.1.
This is a new major version and requires some code changes.
-rw-r--r--Cargo.toml2
-rw-r--r--src/macros.rs1
-rw-r--r--src/sys/termios.rs2
-rw-r--r--src/sys/time.rs2
4 files changed, 5 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ee3882ac..243f309d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -28,7 +28,7 @@ targets = [
[dependencies]
libc = { version = "0.2.141", features = ["extra_traits"] }
-bitflags = "1.1"
+bitflags = "2.3.1"
cfg-if = "1.0"
pin-utils = { version = "0.1.0", optional = true }
static_assertions = "1"
diff --git a/src/macros.rs b/src/macros.rs
index 5d83a5ac..2d356441 100644
--- a/src/macros.rs
+++ b/src/macros.rs
@@ -63,6 +63,7 @@ macro_rules! libc_bitflags {
}
) => {
::bitflags::bitflags! {
+ #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
$(#[$outer])*
pub struct $BitFlags: $T {
$(
diff --git a/src/sys/termios.rs b/src/sys/termios.rs
index b0286f51..0f1c9950 100644
--- a/src/sys/termios.rs
+++ b/src/sys/termios.rs
@@ -309,7 +309,7 @@ impl Termios {
let termios = *self.inner.borrow_mut();
self.input_flags = InputFlags::from_bits_truncate(termios.c_iflag);
self.output_flags = OutputFlags::from_bits_truncate(termios.c_oflag);
- self.control_flags = ControlFlags::from_bits_truncate(termios.c_cflag);
+ self.control_flags = ControlFlags::from_bits_retain(termios.c_cflag);
self.local_flags = LocalFlags::from_bits_truncate(termios.c_lflag);
self.control_chars = termios.c_cc;
#[cfg(any(
diff --git a/src/sys/time.rs b/src/sys/time.rs
index 30ee5fd1..a0160e21 100644
--- a/src/sys/time.rs
+++ b/src/sys/time.rs
@@ -91,6 +91,7 @@ pub(crate) mod timer {
#[cfg(any(target_os = "android", target_os = "linux"))]
bitflags! {
/// Flags that are used for arming the timer.
+ #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct TimerSetTimeFlags: libc::c_int {
const TFD_TIMER_ABSTIME = libc::TFD_TIMER_ABSTIME;
const TFD_TIMER_CANCEL_ON_SET = libc::TFD_TIMER_CANCEL_ON_SET;
@@ -104,6 +105,7 @@ pub(crate) mod timer {
))]
bitflags! {
/// Flags that are used for arming the timer.
+ #[derive(Copy, Clone, Debug, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct TimerSetTimeFlags: libc::c_int {
const TFD_TIMER_ABSTIME = libc::TIMER_ABSTIME;
}