Make HostQueue::queue_count_ a portable atomic type.

Also make lint happy.

Change-Id: I0f965df6a76fd959df9eb411d1f1b11847159790
Este commit está contenido en:
Sean Keely
2017-10-31 02:34:47 -05:00
padre ce6aee01ed
commit d93f92f42d
Se han modificado 4 ficheros con 15 adiciones y 13 borrados
+1 -1
Ver fichero
@@ -166,7 +166,7 @@ class HostQueue : public Queue {
// Host queue id counter, starting from 0x80000000 to avoid overlaping
// with aql queue id.
static volatile uint32_t queue_count_;
static std::atomic<uint32_t> queue_count_;
DISALLOW_COPY_AND_ASSIGN(HostQueue);
};