RESOLVED FIXED 236971
[GTK][WPE] Suspend web process after some time in the process cache
https://bugs.webkit.org/show_bug.cgi?id=236971
Summary [GTK][WPE] Suspend web process after some time in the process cache
Carlos Garcia Campos
Reported 2022-02-21 06:01:40 PST
And resume them when they are restored
Attachments
Patch (5.65 KB, patch)
2022-02-21 06:03 PST, Carlos Garcia Campos
mcatanzaro: review+
ews-feeder: commit-queue-
Carlos Garcia Campos
Comment 1 2022-02-21 06:03:19 PST
Michael Catanzaro
Comment 2 2022-02-21 07:40:48 PST
Comment on attachment 452728 [details] Patch What could go wrong? :)
Michael Catanzaro
Comment 3 2022-02-21 07:43:26 PST
Comment on attachment 452728 [details] 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.
Carlos Garcia Campos
Comment 4 2022-02-22 00:47:50 PST
Note You need to log in before you can comment on or make changes to this bug.