aboutsummaryrefslogtreecommitdiff
path: root/tests/worker_api_3_worker.cpp
blob: db14377a9faf9dd1095f0dffa8092549201d3fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <assert.h>
#include <emscripten.h>

extern "C" {

// Respond with 0, 1, 2, 3 each with finalResponse=false, and 4 with
// finalResponse=true.
void one(char *data, int size) {
  int *x = (int*)data;

  if (*x == 0) {
    // Respond 0, 1, 2, 3
    for (int i = 0; i < 4; ++i) {
      *x = i;
      emscripten_worker_respond_provisionally(data, size);
    }
  }

  // Respond 4
  *x = 4;
  emscripten_worker_respond(data, size);
}

}