diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2015-08-20 16:48:13 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-08-21 10:36:53 -0400 |
commit | 32220d38c04bdb0aeccfcd67715e11a655eb297b (patch) | |
tree | b5c86778b333b9cf2b7e98f57a8390f8d6dfe207 /changes | |
parent | 2657ea802bd9633aeea8774b32d64ed671624818 (diff) | |
download | tor-32220d38c04bdb0aeccfcd67715e11a655eb297b.tar.gz tor-32220d38c04bdb0aeccfcd67715e11a655eb297b.zip |
Ensure worker threads actually exit when it is time
This includes a small refactoring to use a new enum (workqueue_reply_t)
for the return values instead of just ints.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/workqueue_reply_t | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/changes/workqueue_reply_t b/changes/workqueue_reply_t new file mode 100644 index 0000000000..c2d3f4ad65 --- /dev/null +++ b/changes/workqueue_reply_t @@ -0,0 +1,6 @@ + o Minor bugfixes: + - Ensure that worker threads actually exit when a fatal error or + shutdown is indicated. This doesn't currently affect the behaviour + of Tor, because Tor never indicates fatal error or shutdown except + in its unit tests. Fixes bug 16868; bugfix on 0.2.6.3-alpha. + |