diff options
author | Luca Casonato <hello@lcas.dev> | 2021-07-06 19:42:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-06 19:42:52 +0200 |
commit | bdfad23dd012d0c3226b466544e86109da18d09c (patch) | |
tree | f59bfc463f29047df80c48abbe299e55a16b8622 /core/lib.rs | |
parent | 672a88f2727286233ab904e23a9145aa5563a834 (diff) |
feat: support SharedArrayBuffer sharing between workers (#11040)
This commit adds support for sharing SABs between workers.
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index 4a9a213f4..8c8861c79 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -57,6 +57,7 @@ pub use crate::modules::ModuleLoader; pub use crate::modules::ModuleSource; pub use crate::modules::ModuleSourceFuture; pub use crate::modules::NoopModuleLoader; +pub use crate::runtime::SharedArrayBufferStore; // TODO(bartlomieju): this struct should be implementation // detail nad not be public pub use crate::modules::RecursiveModuleLoad; |