From 96ca41fdfb6709c7ba9a5520f2f07ffd76935c80 Mon Sep 17 00:00:00 2001 From: Martin Dahl Date: Wed, 16 Sep 2020 09:02:07 +0200 Subject: [PATCH] Accidentally removed Send on Clock --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 376eaa1..12e3e47 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1344,6 +1344,8 @@ pub enum ClockType { SteadyTime, } +unsafe impl Send for Clock {} + pub struct Clock { clock_handle: Box, }