From: Francisco Jerez Date: Sat, 9 May 2015 13:01:23 +0000 (+0300) Subject: clover: Implement locking of the wait_count, _chain and _status members of event. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a533d4edf1ea346dd9e343c71b2cd500fa550ef8;p=mesa.git clover: Implement locking of the wait_count, _chain and _status members of event. Tested-by: Tom Stellard CC: 10.5 --- diff --git a/src/gallium/state_trackers/clover/core/event.cpp b/src/gallium/state_trackers/clover/core/event.cpp index 969d19a54ae..e1f9de07f83 100644 --- a/src/gallium/state_trackers/clover/core/event.cpp +++ b/src/gallium/state_trackers/clover/core/event.cpp @@ -38,6 +38,7 @@ event::~event() { std::vector> event::trigger_self() { + std::lock_guard lock(mutex); std::vector> evs; if (!--wait_count) @@ -61,6 +62,7 @@ event::trigger() { std::vector> event::abort_self(cl_int status) { + std::lock_guard lock(mutex); std::vector> evs; _status = status; @@ -81,16 +83,22 @@ event::abort(cl_int status) { bool event::signalled() const { + std::lock_guard lock(mutex); return !wait_count; } cl_int event::status() const { + std::lock_guard lock(mutex); return _status; } void event::chain(event &ev) { + std::unique_lock lock(mutex, std::defer_lock); + std::unique_lock lock_ev(ev.mutex, std::defer_lock); + std::lock(lock, lock_ev); + if (wait_count) { ev.wait_count++; _chain.push_back(ev);