diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2017-02-16 16:17:19 +0000 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2017-03-31 09:54:22 +0100 |
commit | 0b32628eddfef95b51909816f625e6f37cd21cb8 (patch) | |
tree | 7b543f2e311a9661dd8d4e4df927bc4386f79f0b /lib/stdlib/assert.c | |
parent | 801cf93c48585a83fda5d576b25c7b7f3cd59259 (diff) | |
download | platform_external_arm-trusted-firmware-0b32628eddfef95b51909816f625e6f37cd21cb8.tar.gz platform_external_arm-trusted-firmware-0b32628eddfef95b51909816f625e6f37cd21cb8.tar.bz2 platform_external_arm-trusted-firmware-0b32628eddfef95b51909816f625e6f37cd21cb8.zip |
Flush console where necessary
Call console_flush() before execution either terminates or leaves an
exception level.
Fixes: ARM-software/tf-issues#123
Change-Id: I64eeb92effb039f76937ce89f877b68e355588e3
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'lib/stdlib/assert.c')
-rw-r--r-- | lib/stdlib/assert.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/stdlib/assert.c b/lib/stdlib/assert.c index 90a1afe50..cb3f3550e 100644 --- a/lib/stdlib/assert.c +++ b/lib/stdlib/assert.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -28,7 +28,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <console.h> #include <debug.h> +#include <platform.h> /* * This is a basic implementation. This could be improved. @@ -37,5 +39,8 @@ void __assert (const char *function, const char *file, unsigned int line, const char *assertion) { tf_printf("ASSERT: %s <%d> : %s\n", function, line, assertion); + + console_flush(); + while(1); } |