summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/thread/clock.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rustix/src/thread/clock.rs')
-rw-r--r--vendor/rustix/src/thread/clock.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/rustix/src/thread/clock.rs b/vendor/rustix/src/thread/clock.rs
index 620cb4ec0..7a8c11968 100644
--- a/vendor/rustix/src/thread/clock.rs
+++ b/vendor/rustix/src/thread/clock.rs
@@ -1,6 +1,6 @@
use crate::{backend, io};
-pub use backend::time::types::Timespec;
+pub use crate::timespec::Timespec;
#[cfg(not(any(
apple,
@@ -11,7 +11,7 @@ pub use backend::time::types::Timespec;
target_os = "redox",
target_os = "wasi",
)))]
-pub use backend::time::types::ClockId;
+pub use crate::clockid::ClockId;
/// `clock_nanosleep(id, 0, request, remain)`—Sleeps for a duration on a
/// given clock.