diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-07-29 20:22:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-07-29 20:22:54 +0200 |
| commit | e3c7656f9dc0acbaf518c051b847ee2e4eb7ba23 (patch) | |
| tree | 311f7ad01d1ef264778aebb2ad9b844c8015d068 /src/lib/j2k_encoder.cc | |
| parent | 09860271bb6d03b3937c08bffb4c672697f6d711 (diff) | |
Fix bugs in thread termination causing occasional pthread
assertion failures.
Before this, it was possible for J2KEncoder::terminate_threads()
to finish without terminating all threads if the thread _running_
terminate_threads() was itself interrupt()ed.
This is because the thread_group::join_all() in terminate_threads()
is an interruption point, so it was possible it not to complete
but instead to throw interrupted_exception. Then the owning
J2KEncoder would be torn down but the threads would still be running,
causing use-after-frees.
This commit adds some boost::this_thread::disable_interruption
objects to ensure that the owning thread is not interrupted while
it is being destroyed.
Also tidy up code that does this stuff, assuming that it's safe
to not call thread::joinable but instead do
thread.interrupt();
try {
thread.join();
} catch (...) {}
Diffstat (limited to 'src/lib/j2k_encoder.cc')
| -rw-r--r-- | src/lib/j2k_encoder.cc | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/lib/j2k_encoder.cc b/src/lib/j2k_encoder.cc index d8d8209c9..4e2a30ef7 100644 --- a/src/lib/j2k_encoder.cc +++ b/src/lib/j2k_encoder.cc @@ -64,14 +64,7 @@ J2KEncoder::J2KEncoder (shared_ptr<const Film> film, shared_ptr<Writer> writer) J2KEncoder::~J2KEncoder () { - try { - terminate_threads (); - } catch (...) { - /* Destructors must not throw exceptions; anything bad - happening now is too late to worry about anyway, - I think. - */ - } + terminate_threads (); } void @@ -246,6 +239,8 @@ J2KEncoder::encode (shared_ptr<PlayerVideo> pv, DCPTime time) void J2KEncoder::terminate_threads () { + boost::this_thread::disable_interruption dis; + if (!_threads) { return; } |
