Fix: temporary fix (by Xiaosu) that introduces locks that prevent scalability

master
Emil Abbasov 2 years ago
parent 8d1ba3d9b0
commit 90f9987c82

@ -112,8 +112,10 @@ wasi_context_init(wasi_options_t *options)
}
}
/* Seed Random */
srandom(time(NULL));
/* Seed Random
* Commented out as a temporary fix for the mutex blocking delay srandom causes in libc.
*/
// srandom(time(NULL));
/* TODO: Preopens */

Loading…
Cancel
Save