WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
57611
[GTK] Do not destroy WorkQueue event sources unless they have been cancelled
https://bugs.webkit.org/show_bug.cgi?id=57611
Summary
[GTK] Do not destroy WorkQueue event sources unless they have been cancelled
Carlos Garcia Campos
Reported
2011-04-01 03:20:19 PDT
We are currently returning FALSE from performWork() when condition contains HUP or ERR which makes the source to be destroyed, but it's not removed from the event source list. When unregisterEventSourceHandler() is called the source might be destroyed already. To avoid that we can simply return TRUE from the callback unless it has been cancelled (condition = 0) which happens in unregisterEventSourceHandler().
Attachments
Patch
(8.70 KB, patch)
2011-04-01 03:29 PDT
,
Carlos Garcia Campos
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Carlos Garcia Campos
Comment 1
2011-04-01 03:29:23 PDT
Created
attachment 87836
[details]
Patch This patch applies on top of patch attached to
bug #57540
Martin Robinson
Comment 2
2011-04-01 09:43:30 PDT
Comment on
attachment 87836
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=87836&action=review
Nice.
> Source/WebKit2/Platform/gtk/WorkQueueGtk.cpp:61 > if (!queue->m_isValid) > - return FALSE; > + return;
It appears that Mac does not cancel the source either if the queue is invalid. Do you know in what cases this can happen?
Carlos Garcia Campos
Comment 3
2011-04-08 03:35:51 PDT
Committed
r83281
: <
http://trac.webkit.org/changeset/83281
>
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