From 9949d5a089ce89f102d3c84a256f8933f235fc21 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Thu, 8 Aug 2024 21:39:00 +0300 Subject: [macOS] Remove kill override. --- platform/macos/os_macos.mm | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'platform/macos/os_macos.mm') diff --git a/platform/macos/os_macos.mm b/platform/macos/os_macos.mm index 495246344b..3a82514766 100644 --- a/platform/macos/os_macos.mm +++ b/platform/macos/os_macos.mm @@ -675,18 +675,6 @@ bool OS_MacOS::is_process_running(const ProcessID &p_pid) const { return ![app isTerminated]; } -Error OS_MacOS::kill(const ProcessID &p_pid) { - NSRunningApplication *app = [NSRunningApplication runningApplicationWithProcessIdentifier:(pid_t)p_pid]; - if (!app) { - return OS_Unix::kill(p_pid); - } - bool terminated = [app terminate]; - if (!terminated) { - terminated = [app forceTerminate]; - } - return terminated ? OK : ERR_INVALID_PARAMETER; -} - String OS_MacOS::get_unique_id() const { static String serial_number; -- cgit v1.2.3