patch up timeout code
Some checks are pending
ci / Linux (Ubuntu) (push) Waiting to run
ci / linux-asan (push) Waiting to run
ci / linux-msan (push) Waiting to run
ci / linux-ubsan (push) Waiting to run
ci / macOS (push) Waiting to run
ci / macos-asan (push) Waiting to run
ci / macos-ubsan (push) Waiting to run
ci / freebsd (push) Waiting to run
ci / qemu-alpine (arm32v6) (push) Waiting to run
ci / qemu-alpine (arm32v7) (push) Waiting to run
ci / qemu-alpine (arm64v8) (push) Waiting to run
ci / qemu-alpine (i386) (push) Waiting to run
ci / qemu-alpine (s390x) (push) Waiting to run

This commit is contained in:
The Ghost of FOSS' Past 2024-10-25 10:07:31 -05:00
parent d868f20e80
commit 25dae54410

2
qjs.c
View file

@ -531,7 +531,7 @@ int main(int argc, char **argv)
"\n" "\n"
"if (typeof os !== 'undefined') {\n" "if (typeof os !== 'undefined') {\n"
" globalThis.sleep = os.sleep;\n" " globalThis.sleep = os.sleep;\n"
" async function setTimeout(func, ms) { await sleep(ms); Function(func)(); }\n" " async function setTimeout(func, ms) { await sleep(ms); return func(); }\n"
" globalThis.setTimeout = setTimeout\n" " globalThis.setTimeout = setTimeout\n"
"} else {\n" "} else {\n"
" console.error('os is not defined.');\n" " console.error('os is not defined.');\n"