summaryrefslogtreecommitdiff
path: root/core/lib.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-03-04 20:07:11 -0500
committerGitHub <noreply@github.com>2023-03-04 20:07:11 -0500
commit2f7222da8a26d8be915b9467fc21649a18f54b77 (patch)
treeadb54f49608bd6cdd27e98ad56130532f49a04f5 /core/lib.rs
parent7afa3aceb04e6b2c8820b7326d6f648db6b571c6 (diff)
refactor: remove `Semaphore::new(1)` and use `TaskQueue` (#18014)
Diffstat (limited to 'core/lib.rs')
-rw-r--r--core/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs
index 7ec40e311..1c60db694 100644
--- a/core/lib.rs
+++ b/core/lib.rs
@@ -118,6 +118,7 @@ pub use crate::runtime::V8_WRAPPER_OBJECT_INDEX;
pub use crate::runtime::V8_WRAPPER_TYPE_INDEX;
pub use crate::source_map::SourceMapGetter;
pub use crate::task_queue::TaskQueue;
+pub use crate::task_queue::TaskQueuePermit;
pub fn v8_version() -> &'static str {
v8::V8::get_version()