mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
removed alignment of wfqueue
This commit is contained in:
@@ -7,7 +7,7 @@ namespace gpgpu_virt::util {
|
||||
* @brief Wait-Free Queue
|
||||
* http://www.1024cores.net/home/lock-free-algorithms/queues/intrusive-mpsc-node-based-queue
|
||||
*/
|
||||
class alignas(64) WFQueue
|
||||
class WFQueue
|
||||
{
|
||||
|
||||
public:
|
||||
@@ -23,11 +23,11 @@ namespace gpgpu_virt::util {
|
||||
|
||||
private:
|
||||
WFQueue(const WFQueue& copy);
|
||||
alignas(64) Chain* volatile head;
|
||||
Chain* volatile head;
|
||||
|
||||
protected:
|
||||
alignas(64) Chain* tail;
|
||||
alignas(32) Chain stub;
|
||||
Chain* tail;
|
||||
Chain stub;
|
||||
|
||||
public:
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user