summaryrefslogtreecommitdiff
path: root/src/common/assert.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* assert/logging: Stop the logging thread and flush the backends before crashingGravatar FearlessTobi2023-12-261-0/+3
| | | | Co-Authored-By: SachinVin <26602104+SachinVin@users.noreply.github.com>
* common/assert: rework ASSERT handling to avoid std::function usageGravatar Liam2022-06-131-7/+3
|
* common/assert: add unlikelyGravatar Liam2022-06-131-1/+1
|
* common: Don't test ASSERT conditions inlineGravatar Liam2022-06-131-3/+7
|
* common: Change semantics of UNREACHABLE to unconditionally crashGravatar Liam2022-06-131-0/+5
|
* general: Convert source file copyright comments over to SPDXGravatar Morph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* common: Move settings to common from core.Gravatar bunnei2021-04-141-1/+1
| | | | - Removes a dependency on core and input_common from common.
* core: settings: Add setting for debug assertions and disable by default.Gravatar bunnei2021-04-141-2/+5
| | | | | | - This is a developer-only setting and no longer needs to be enabled by default. - Also adds "use_auto_stub" setting to SDL frontend while we are here. - Supersedes #1340.
* common: Move assert failure handling into a cpp file.Gravatar Markus Wick2021-04-041-0/+11
Advantage: Altering the handler does not need a full recompilation. Disadvantage: noreturn is droped, so the caller is a bit slower. We quite often run yuzu with a YOLO assertion handler. In fact, only very few games run at all with asserts. This patch allows developers to patch the handler without recompiling everything. The overhead of the missing "noreturn" attribute shoul be negletable.