2019-07-26 20:38:15 +01:00
|
|
|
/*
|
2020-01-24 10:10:40 +00:00
|
|
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
2019-07-26 20:38:15 +01: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 <stdbool.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "utils.h"
|
|
|
|
#include "lib/log.h"
|
|
|
|
|
|
|
|
__attribute__ ((noreturn)) void generic_panic(void) {
|
|
|
|
print(SCREEN_LOG_LEVEL_ERROR, "Panic raised!");
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
/* Lock. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
__attribute__((noreturn)) void fatal_error(const char *fmt, ...) {
|
|
|
|
va_list args;
|
|
|
|
print(SCREEN_LOG_LEVEL_ERROR, "Fatal error: ");
|
|
|
|
va_start(args, fmt);
|
|
|
|
vprint(SCREEN_LOG_LEVEL_ERROR, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
/* Lock. */
|
|
|
|
}
|
|
|
|
}
|