diff options
Diffstat (limited to 'runtime/js')
-rw-r--r-- | runtime/js/40_spawn.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/40_spawn.js b/runtime/js/40_spawn.js index 77236ee2b..7a2f06b6a 100644 --- a/runtime/js/40_spawn.js +++ b/runtime/js/40_spawn.js @@ -165,7 +165,7 @@ }; } - kill(signo) { + kill(signo = "SIGTERM") { if (this.#rid === null) { throw new TypeError("Child process has already terminated."); } |