Skip to content

Commit

Permalink
just use libc::clockid_t
Browse files Browse the repository at this point in the history
  • Loading branch information
maniwani committed Nov 13, 2022
1 parent 5008a31 commit 015ab65
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions library/std/src/sys/unix/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,9 +290,9 @@ mod inner {
impl Instant {
pub fn now() -> Instant {
#[cfg(target_os = "macos")]
const clock_id: clock_t = libc::CLOCK_UPTIME_RAW;
const clock_id: libc::clockid_t = libc::CLOCK_UPTIME_RAW;
#[cfg(not(target_os = "macos"))]
const clock_id: clock_t = libc::CLOCK_MONOTONIC;
const clock_id: libc::clockid_t = libc::CLOCK_MONOTONIC;
Instant { t: Timespec::now(clock_id) }
}

Expand Down Expand Up @@ -324,13 +324,8 @@ mod inner {
}
}

#[cfg(not(any(target_os = "dragonfly", target_os = "espidf", target_os = "horizon")))]
pub type clock_t = libc::c_int;
#[cfg(any(target_os = "dragonfly", target_os = "espidf", target_os = "horizon"))]
pub type clock_t = libc::c_ulong;

impl Timespec {
pub fn now(clock: clock_t) -> Timespec {
pub fn now(clock: libc::clockid_t) -> Timespec {
// Try to use 64-bit time in preparation for Y2038.
#[cfg(all(target_os = "linux", target_env = "gnu", target_pointer_width = "32"))]
{
Expand Down

0 comments on commit 015ab65

Please sign in to comment.