summaryrefslogtreecommitdiff
path: root/src/common/logging/backend.h
diff options
context:
space:
mode:
authorGravatar liamwhite2023-12-26 11:46:04 -0500
committerGravatar GitHub2023-12-26 11:46:04 -0500
commit1559984f77c4cf7474a8f806046b709576e4e439 (patch)
tree670b041b44aeff91afb8fce0e0e0bb288f86f326 /src/common/logging/backend.h
parentMerge pull request #12472 from FearlessTobi/port-7239 (diff)
parent assert/logging: Stop the logging thread and flush the backends before crashing (diff)
downloadyuzu-1559984f77c4cf7474a8f806046b709576e4e439.tar.gz
yuzu-1559984f77c4cf7474a8f806046b709576e4e439.tar.xz
yuzu-1559984f77c4cf7474a8f806046b709576e4e439.zip
Merge pull request #12471 from FearlessTobi/port-7146
Port citra-emu/citra#7146: "assert/logging: Stop the logging thread and flush the backends before crashing"
Diffstat (limited to 'src/common/logging/backend.h')
-rw-r--r--src/common/logging/backend.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h
index 12e5e2498..2a9926e9e 100644
--- a/src/common/logging/backend.h
+++ b/src/common/logging/backend.h
@@ -14,6 +14,9 @@ void Initialize();
14 14
15void Start(); 15void Start();
16 16
17/// Explicitly stops the logger thread and flushes the buffers
18void Stop();
19
17void DisableLoggingInTests(); 20void DisableLoggingInTests();
18 21
19/** 22/**