Open
Description
We got a report in chronotope/chrono#634 that I don't know what to do with.
Apparently it is possible for clock_gettime()
to fail on Unix with EPERM
, maybe when running inside a container or sandbox (?).
Relevant code:
https://github.com/rust-lang/rust/blob/1.72.0/library/std/src/sys/unix/time.rs#L272
Should this just remain a panic, or should something like UNIX_EPOCH
be returned instead?