mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
backend: Ensure backend_thread is destructed before message_queue
Ensures that stop_token signals that stop has been requested before destruction of conditional_variable
This commit is contained in:
parent
ae6fda8638
commit
e112421db8
1 changed files with 1 additions and 1 deletions
|
@ -397,9 +397,9 @@ private:
|
||||||
ColorConsoleBackend color_console_backend{};
|
ColorConsoleBackend color_console_backend{};
|
||||||
FileBackend file_backend;
|
FileBackend file_backend;
|
||||||
|
|
||||||
std::jthread backend_thread;
|
|
||||||
MPSCQueue<Entry, true> message_queue{};
|
MPSCQueue<Entry, true> message_queue{};
|
||||||
std::chrono::steady_clock::time_point time_origin{std::chrono::steady_clock::now()};
|
std::chrono::steady_clock::time_point time_origin{std::chrono::steady_clock::now()};
|
||||||
|
std::jthread backend_thread;
|
||||||
|
|
||||||
#ifdef CITRA_LINUX_GCC_BACKTRACE
|
#ifdef CITRA_LINUX_GCC_BACKTRACE
|
||||||
std::atomic_int received_signal{0};
|
std::atomic_int received_signal{0};
|
||||||
|
|
Loading…
Reference in a new issue