Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mitogen
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
mitogen
Commits
4f361be7
Commit
4f361be7
authored
Mar 18, 2018
by
David Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue #144: teach Select() to close its latch
Causes all threads sleeping on the select to wake.
parent
8aada264
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
docs/api.rst
docs/api.rst
+13
-3
mitogen/master.py
mitogen/master.py
+1
-0
No files found.
docs/api.rst
View file @
4f361be7
...
@@ -159,6 +159,11 @@ contexts.
...
@@ -159,6 +159,11 @@ contexts.
:return:
:return:
:py:class:`mitogen.core.Message`
:py:class:`mitogen.core.Message`
:raises mitogen.core.TimeoutError:
Timeout was reached.
:raises mitogen.core.LatchError:
:py:meth:`close` has been called, and the underlying latch is no
longer valid.
.. py:method:: __bool__ ()
.. py:method:: __bool__ ()
...
@@ -166,9 +171,14 @@ contexts.
...
@@ -166,9 +171,14 @@ contexts.
.. py:method:: close ()
.. py:method:: close ()
Remove the select's notifier function from each registered receiver.
Remove the select's notifier function from each registered receiver,
Necessary to prevent memory leaks in long-running receivers. This is
mark the associated latch as closed, and cause any thread currently
called automatically when the Python :keyword:`with` statement is used.
sleeping in :py:meth:`get` to be woken with
:py:class:`mitogen.core.LatchError`.
This is necessary to prevent memory leaks in long-running receivers. It
is called automatically when the Python :keyword:`with` statement is
used.
.. py:method:: empty ()
.. py:method:: empty ()
...
...
mitogen/master.py
View file @
4f361be7
...
@@ -236,6 +236,7 @@ class Select(object):
...
@@ -236,6 +236,7 @@ class Select(object):
def
close
(
self
):
def
close
(
self
):
for
recv
in
self
.
_receivers
[:]:
for
recv
in
self
.
_receivers
[:]:
self
.
remove
(
recv
)
self
.
remove
(
recv
)
self
.
_latch
.
close
()
def
empty
(
self
):
def
empty
(
self
):
return
self
.
_latch
.
empty
()
return
self
.
_latch
.
empty
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment