diff options
Diffstat (limited to 'src/util.rs')
-rw-r--r-- | src/util.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.rs b/src/util.rs index 693e26a8..69715d8e 100644 --- a/src/util.rs +++ b/src/util.rs @@ -23,4 +23,7 @@ pub mod thread { { ::std::thread::Builder::new().name(name.into()).spawn(f).expect("thread spawn works") } + + pub use ::std::thread::*; } + |