[Webkit-unassigned] [Bug 236971] [GTK][WPE] Suspend web process after some time in the process cache
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Feb 21 07:43:26 PST 2022
https://bugs.webkit.org/show_bug.cgi?id=236971
--- Comment #3 from Michael Catanzaro <mcatanzaro at gnome.org> ---
Comment on attachment 452728
--> https://bugs.webkit.org/attachment.cgi?id=452728
Patch
View in context: https://bugs.webkit.org/attachment.cgi?id=452728&action=review
> Source/WebKit/UIProcess/glib/WebProcessProxyGLib.cpp:81
> +void WebProcessProxy::platformSuspendProcess()
> +{
> + auto id = processIdentifier();
> + if (!id)
> + return;
> +
> + RELEASE_LOG(Process, "%p - [PID=%i] WebProcessProxy::platformSuspendProcess", this, id);
> + kill(id, SIGSTOP);
> +}
Since there is nothing GTK/WPE-specific here, I think I would move this to a WebProcessProxyUnix.cpp and guard it with #if !PLATFORM(COCOA). Then instead of #if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(WPE) guards, you would only need to use #if PLATFORM(MAC) || OS(UNIX) guards instead.
Um, is OS(UNIX) true for PLATFORM(IOS_FAMILY)? I'm not sure. Got to be careful about that, if so.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20220221/e44aa801/attachment.htm>
More information about the webkit-unassigned
mailing list