2019-12-09 11:57:37 +00:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-12-09 11:57:37 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#include <stratosphere.hpp>
|
|
|
|
|
|
|
|
namespace ams::result::impl {
|
|
|
|
|
2020-02-23 07:05:14 +00:00
|
|
|
NORETURN WEAK_SYMBOL void OnResultAbort(const char *file, int line, const char *func, const char *expr, Result result) {
|
2021-09-06 04:57:04 +01:00
|
|
|
::ams::diag::AbortImpl(file, line, func, expr, result.GetValue(), "Result Abort: 2%03d-%04d", result.GetModule(), result.GetDescription());
|
2020-08-14 01:28:29 +01:00
|
|
|
AMS_INFINITE_LOOP();
|
2021-01-28 08:15:24 +00:00
|
|
|
__builtin_unreachable();
|
2020-02-23 07:05:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NORETURN WEAK_SYMBOL void OnResultAbort(Result result) {
|
|
|
|
OnResultAbort("", 0, "", "", result);
|
|
|
|
}
|
|
|
|
|
|
|
|
NORETURN WEAK_SYMBOL void OnResultAssertion(const char *file, int line, const char *func, const char *expr, Result result) {
|
2021-09-06 04:57:04 +01:00
|
|
|
::ams::diag::AssertionFailureImpl(file, line, func, expr, result.GetValue(), "Result Assertion: 2%03d-%04d", result.GetModule(), result.GetDescription());
|
2020-08-14 01:28:29 +01:00
|
|
|
AMS_INFINITE_LOOP();
|
2021-01-28 08:15:24 +00:00
|
|
|
__builtin_unreachable();
|
2020-02-23 07:05:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NORETURN WEAK_SYMBOL void OnResultAssertion(Result result) {
|
|
|
|
OnResultAssertion("", 0, "", "", result);
|
|
|
|
}
|
2019-12-09 11:57:37 +00:00
|
|
|
|
|
|
|
}
|