citra/src/tests
yzct12345 3641b9891d logging: Simplify and make thread-safe
This simplifies the logging system.

This also fixes some lost messages on startup.

The simplification is simple. I removed unused functions and moved most things in the .h to the .cpp. I replaced the unnecessary linked list with its contents laid out as three member variables. Anything that went through the linked list now directly accesses the backends. Generic functions are replaced with those for each specific use case and there aren't many. This change increases coupling but we gain back more KISS and encapsulation.

With those changes it was easy to make it thread-safe. I just removed the mutex and turned a boolean atomic. I was planning to use this thread-safety in my next PR about stacktraces. It was actually async-signal-safety at first but I ended up using a different approach. Anyway getting rid of the linked list is important for that because have the list of backends constantly changing complicates things.
2023-06-30 12:15:51 +03:00
..
audio_core tests/audio_core: add sanity test cases for LLE vs HLE 2023-05-25 20:23:21 +05:30
common logging: Simplify and make thread-safe 2023-06-30 12:15:51 +03:00
core Chore: Enable warnings as errors on MSVC (#6456) 2023-05-01 22:38:58 +03:00
video_core/shader Refactor software renderer (#6621) 2023-06-24 00:59:18 +02:00
CMakeLists.txt tests/audio_core: add sanity test cases for LLE vs HLE 2023-05-25 20:23:21 +05:30
precompiled_headers.h Port yuzu-emu/yuzu#9300: "CMake: Use precompiled headers to improve compile times" (#6213) 2022-12-17 16:06:38 +01:00