diff options
author | davidcunado-arm <david.cunado@arm.com> | 2017-04-12 22:23:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-12 22:23:44 +0100 |
commit | f07d3985b86acc6abc963924d82c9ba9a795fb22 (patch) | |
tree | 1c516dd4d561e9a71ea1fc8b9b6527b78cff0d21 /lib/stdlib/assert.c | |
parent | 45cd814bf71b311686db9fa65f78171ba5abf02f (diff) | |
parent | 1e09ff93444943edcebfb167202f37a5e7913d92 (diff) |
Merge pull request #885 from antonio-nino-diaz-arm/an/console-flush
Implement console_flush()
Diffstat (limited to 'lib/stdlib/assert.c')
-rw-r--r-- | lib/stdlib/assert.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/stdlib/assert.c b/lib/stdlib/assert.c index 90a1afe5..3486e50b 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); - while(1); + + console_flush(); + + plat_panic_handler(); } |