summaryrefslogtreecommitdiff
path: root/lib/stdlib/assert.c
blob: 5220ad8f44f91440efb16a34228173608f797c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <console.h>
#include <debug.h>
#include <platform.h>

void __assert(const char *function, const char *file, unsigned int line,
		const char *assertion)
{
#if LOG_LEVEL >= LOG_LEVEL_INFO
	/*
	 * Only print the output if LOG_LEVEL is higher or equal to
	 * LOG_LEVEL_INFO, which is the default value for builds with DEBUG=1.
	 */
	tf_printf("ASSERT: %s <%d> : %s\n", function, line, assertion);

	console_flush();
#endif

	plat_panic_handler();
}