[zion] Move synchronization to the message queue

This commit is contained in:
Drew Galbraith 2023-06-21 23:57:23 -07:00
parent 9dd457391c
commit dc63084d61
6 changed files with 60 additions and 36 deletions

View file

@ -11,6 +11,7 @@ class LinkedList {
LinkedList(const LinkedList&) = delete;
bool empty() const { return size_ == 0; }
uint64_t size() const { return size_; }
void PushBack(const T& item) {