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 /cli/standalone.rs | |
parent | 672a88f2727286233ab904e23a9145aa5563a834 (diff) |
feat: support SharedArrayBuffer sharing between workers (#11040)
This commit adds support for sharing SABs between workers.
Diffstat (limited to 'cli/standalone.rs')
-rw-r--r-- | cli/standalone.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/standalone.rs b/cli/standalone.rs index 74e5de1ca..c8918563f 100644 --- a/cli/standalone.rs +++ b/cli/standalone.rs @@ -248,6 +248,7 @@ pub async fn run( origin_storage_dir: None, blob_store, broadcast_channel, + shared_array_buffer_store: None, }; let mut worker = MainWorker::from_options(main_module.clone(), permissions, &options); |