summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorGuillaume Nault <g.nault@alphalink.fr>2013-07-24 20:27:45 +0200
committerKozlov Dmitry <xeb@mail.ru>2013-07-24 22:33:00 +0400
commit15fa3651e11fbf36ab3649860a31be936919bb1e (patch)
tree629b3b11c1a8ad2ac92f224c05057c662a814f31 /cmake
parent96eca1b86e5c586b54b7fd84c8967c4c5b4b4878 (diff)
downloadaccel-ppp-15fa3651e11fbf36ab3649860a31be936919bb1e.tar.gz
accel-ppp-15fa3651e11fbf36ab3649860a31be936919bb1e.zip
triton: Fix race upon termination
The triton_terminate() function works by setting the need_close flag of each triton context, then queues this context for execution by a triton thread if not already running. But if the context is already being run by a triton thread, it may not notice that its need_close flag has been updated (this flag is only checked at the beginning of ctx_thread()). So if no other event wakes up that context (i.e. if ctx_thread() isn't run again), it will never terminate. This patch moves the need_close flag check at the end of ctx_thread() so that a triton context can take the need_close flag into account event if it's updated while running. The context spinlock is also used to protect the need_close flag as it is concurrently updated by triton_terminate(). Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
Diffstat (limited to 'cmake')
0 files changed, 0 insertions, 0 deletions