From 0416e4b03e38eef576e9d6e4e362c81eedc93312 Mon Sep 17 00:00:00 2001 From: Jeong YunWon Date: Sun, 5 Sep 2021 06:11:54 +0900 Subject: [PATCH] enable macos thread/process time --- vm/src/stdlib/time.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vm/src/stdlib/time.rs b/vm/src/stdlib/time.rs index cf297bec2c..81a83fa3d7 100644 --- a/vm/src/stdlib/time.rs +++ b/vm/src/stdlib/time.rs @@ -195,6 +195,7 @@ mod time { #[cfg(not(any( windows, + target_os = "macos", target_os = "android", target_os = "dragonfly", target_os = "freebsd", @@ -248,6 +249,7 @@ mod time { #[cfg(not(any( windows, + target_os = "macos", target_os = "android", target_os = "dragonfly", target_os = "freebsd", @@ -391,6 +393,7 @@ mod unix { } #[cfg(any( + target_os = "macos", target_os = "android", target_os = "dragonfly", target_os = "freebsd", @@ -414,6 +417,7 @@ mod unix { } #[cfg(any( + target_os = "macos", target_os = "android", target_os = "dragonfly", target_os = "freebsd",