mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2025-12-17 13:02:27 +01:00
Change order of members.
This commit is contained in:
committed by
Aaron van Geffen
parent
8c2ac904b4
commit
ac6b3fb225
@@ -31,13 +31,13 @@ private:
|
||||
const std::function<void()> completionFn;
|
||||
};
|
||||
|
||||
std::atomic_bool _shouldStop;
|
||||
std::atomic<size_t> _processing;
|
||||
std::vector<std::thread> _threads;
|
||||
std::deque<TaskData_t> _pending;
|
||||
std::deque<TaskData_t> _completed;
|
||||
std::condition_variable _condPending;
|
||||
std::condition_variable _condComplete;
|
||||
std::atomic<size_t> _processing;
|
||||
std::atomic_bool _shouldStop;
|
||||
std::mutex _mutex;
|
||||
|
||||
typedef std::unique_lock<std::mutex> unique_lock;
|
||||
|
||||
Reference in New Issue
Block a user