about summary refs log tree commit diff
path: root/library/std/src/sys/unix/time.rs
diff options
context:
space:
mode:
authorThom Chiovoloni <thom@shift.click>2022-10-11 17:22:12 -0700
committerThom Chiovoloni <thom@shift.click>2023-06-21 14:59:37 -0700
commitbdc3db944cf8da99d80e67e7bb52917512d0a5a7 (patch)
tree4bf332994538c0a5854994dbacd2f578e90cc73d /library/std/src/sys/unix/time.rs
parent006a26c0b546abc0fbef59a773639582b641e500 (diff)
downloadrust-bdc3db944cf8da99d80e67e7bb52917512d0a5a7.tar.gz
rust-bdc3db944cf8da99d80e67e7bb52917512d0a5a7.zip
wip: Support Apple tvOS in libstd
Diffstat (limited to 'library/std/src/sys/unix/time.rs')
-rw-r--r--library/std/src/sys/unix/time.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/library/std/src/sys/unix/time.rs b/library/std/src/sys/unix/time.rs
index a9fbc7ab108..17b4130c202 100644
--- a/library/std/src/sys/unix/time.rs
+++ b/library/std/src/sys/unix/time.rs
@@ -219,7 +219,8 @@ impl From<__timespec64> for Timespec {
 #[cfg(any(
     all(target_os = "macos", any(not(target_arch = "aarch64"))),
     target_os = "ios",
-    target_os = "watchos"
+    target_os = "watchos",
+    target_os = "tvos"
 ))]
 mod inner {
     use crate::sync::atomic::{AtomicU64, Ordering};
@@ -339,7 +340,8 @@ mod inner {
 #[cfg(not(any(
     all(target_os = "macos", any(not(target_arch = "aarch64"))),
     target_os = "ios",
-    target_os = "watchos"
+    target_os = "watchos",
+    target_os = "tvos"
 )))]
 mod inner {
     use crate::fmt;