comparison Paper/src/synchronizedQueue.h @ 0:a5facba1adbc

first
author ryokka
date Fri, 13 Apr 2018 18:07:04 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a5facba1adbc
1 struct SynchronizedQueue {
2 struct Element* top;
3 struct Element* last;
4 struct Atomic* atomic;
5 };
6
7 // Singly Linked List element
8 struct Element {
9 union Data* top;
10 struct Element* next;
11 };