We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b0551d commit cedebccCopy full SHA for cedebcc
test/webaudio/audioworklet_emscripten_locks.c
@@ -67,7 +67,7 @@ void printDummy(Dummy* dummy) {
67
// Run a simple calculation that will only be stable *if* all values are atomically updated
68
void runCalcs(Dummy* dummy, int num) {
69
for (int n = 0; n < num; n++) {
70
- int have = emscripten_lock_busyspin_wait_acquire(&testLock, 100);
+ int have = emscripten_lock_busyspin_wait_acquire(&testLock, 10);
71
assert(have);
72
dummy->val0 += dummy->val1 * dummy->val2;
73
dummy->val1 += dummy->val2 * dummy->val0;
0 commit comments