view Paper/src/SynchronizedQueue.h @ 10:7573c185aecf

add impl
author ichikitakahiro <e165713@ie.u-ryukyu.ac.jp>
date Tue, 25 Jan 2022 22:27:17 +0900
parents a2da5ed4a3b3
children
line wrap: on
line source

typedef struct SynchronizedQueue <> impl Queue {
  struct Element* top;
  struct Element* last;
  struct Atomic* atomic;
} SynchronizedQueue;