This commit is contained in:
dave caruso
2024-08-06 13:55:32 -07:00
parent e3f96c2e72
commit 62d15ef4e9

View File

@@ -2742,8 +2742,6 @@ JSC_DEFINE_HOST_FUNCTION(Process_functionReallyKill,
result = errno;
#else
int result = uv_kill(pid, signal);
if (result == UV_ESRCH)
result = 0;
#endif
RELEASE_AND_RETURN(scope, JSValue::encode(jsNumber(result)));