You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EventLoop::watcher_ is a type of PipeEventWatcher, it will create two file descriptors on initialization. We think these two file descriptors whill be closed when PipeEventWatcher destructing :
But when the object is destructing we have no change to call PipeEventWatcher::DoClose() because the drived class PipeEventWatcher must be desctructed before EventWatcher.
The text was updated successfully, but these errors were encountered:
EventLoop::watcher_
is a type ofPipeEventWatcher
, it will create two file descriptors on initialization. We think these two file descriptors whill be closed whenPipeEventWatcher
destructing :But when the object is destructing we have no change to call
PipeEventWatcher::DoClose()
because the drived classPipeEventWatcher
must be desctructed beforeEventWatcher
.The text was updated successfully, but these errors were encountered: