WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
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-
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Carlos Garcia Campos
Comment 1
2022-02-21 06:03:19 PST
Created
attachment 452728
[details]
Patch
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
Committed
r290291
(
247615@trunk
): <
https://commits.webkit.org/247615@trunk
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug