aboutsummaryrefslogtreecommitdiff
path: root/src/future/block_on.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/future/block_on.rs')
-rw-r--r--src/future/block_on.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/future/block_on.rs b/src/future/block_on.rs
new file mode 100644
index 0000000..91f9cc0
--- /dev/null
+++ b/src/future/block_on.rs
@@ -0,0 +1,15 @@
+use std::future::Future;
+
+cfg_rt! {
+ pub(crate) fn block_on<F: Future>(f: F) -> F::Output {
+ let mut e = crate::runtime::enter::enter(false);
+ e.block_on(f).unwrap()
+ }
+}
+
+cfg_not_rt! {
+ pub(crate) fn block_on<F: Future>(f: F) -> F::Output {
+ let mut park = crate::park::thread::CachedParkThread::new();
+ park.block_on(f).unwrap()
+ }
+}