Sha256: 29e543abe41b05f478ebe0c794d07ba3291f25b432abf44a465351dee3943903

Contents?: true

Size: 682 Bytes

Versions: 50

Compression:

Stored size: 682 Bytes

Contents

/* Worker code for test_worker.js */
import * as std from "std";
import * as os from "os";

var parent = os.Worker.parent;

function handle_msg(e) {
    var ev = e.data;
    //          print("child_recv", JSON.stringify(ev));
    switch(ev.type) {
    case "abort":
        parent.postMessage({ type: "done" });
        break;
    case "sab":
        /* modify the SharedArrayBuffer */
        ev.buf[2] = 10;
        parent.postMessage({ type: "sab_done", buf: ev.buf });
        break;
    }
}

function worker_main() {
    var i;
    
    parent.onmessage = handle_msg;
    for(i = 0; i < 10; i++) {
        parent.postMessage({ type: "num", num: i }); 
    }
}

worker_main();

Version data entries

50 entries across 49 versions & 6 rubygems

Version Path
ufos-1.0.94 ./other/experimental_code/quickjs/tests/test_worker_module.js
aliens-1.0.94 ./other/experimental_code/quickjs/tests/test_worker_module.js
freespeech-1.0.94 ./other/experimental_code/quickjs/tests/test_worker_module.js
elonmusk-1.0.94 ./other/experimental_code/quickjs/tests/test_worker_module.js
politics-1.0.94 ./other/experimental_code/quickjs/tests/test_worker_module.js
democracy-1.0.94 ./other/experimental_code/quickjs/tests/test_worker_module.js
democracy-1.0.93 ./other/experimental_code/quickjs/tests/test_worker_module.js
ufos-1.0.91 ./other/experimental_code/quickjs/tests/test_worker_module.js
aliens-1.0.91 ./other/experimental_code/quickjs/tests/test_worker_module.js
freespeech-1.0.91 ./other/experimental_code/quickjs/tests/test_worker_module.js
elonmusk-1.0.91 ./other/experimental_code/quickjs/tests/test_worker_module.js
politics-1.0.91 ./other/experimental_code/quickjs/tests/test_worker_module.js
politics-1.0.89 ./other/experimental_code/quickjs/tests/test_worker_module.js
ufos-1.0.87 ./other/experimental_code/quickjs/tests/test_worker_module.js
aliens-1.0.87 ./other/experimental_code/quickjs/tests/test_worker_module.js
freespeech-1.0.87 ./other/experimental_code/quickjs/tests/test_worker_module.js
elonmusk-1.0.87 ./other/experimental_code/quickjs/tests/test_worker_module.js
politics-1.0.87 ./other/experimental_code/quickjs/tests/test_worker_module.js
ufos-1.0.88 ./other/experimental_code/quickjs/tests/test_worker_module.js
aliens-1.0.88 ./other/experimental_code/quickjs/tests/test_worker_module.js