2008-01-09 Joel Sherrill <joel.sherrill@OARcorp.com>

* libcsupport/src/__assert.c: Clean up and make __assert() call
	__assert_func().
This commit is contained in:
Joel Sherrill
2008-01-09 16:37:40 +00:00
parent b36dc03c90
commit 29ab6a0ea0
2 changed files with 18 additions and 16 deletions

View File

@@ -1,3 +1,8 @@
2008-01-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* libcsupport/src/__assert.c: Clean up and make __assert() call
__assert_func().
2008-01-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* libcsupport/src/__assert.c: Newlib 1.16.0 adds __assert_func(). We

View File

@@ -17,23 +17,10 @@
#include <rtems/bspIo.h>
#include <rtems.h>
void __assert(
const char *file,
int line,
const char *failedexpr)
{
printk(
"assertion \"%s\" failed: file \"%s\", line %d\n",
failedexpr,
file,
line
);
rtems_fatal_error_occurred(0);
}
/*
* Newlib 1.16.0 added this method
* Newlib 1.16.0 added this method. Together these provide an
* RTEMS safe, low memory implementation.
*/
void __assert_func(
const char *file,
@@ -46,7 +33,17 @@ void __assert_func(
failedexpr,
file,
line,
func ? ", function: " : "", func ? func : ""
(func) ? ", function: " : "",
(func) ? func : ""
);
rtems_fatal_error_occurred(0);
}
void __assert(
const char *file,
int line,
const char *failedexpr
)
{
__assert_func (file, line, NULL, failedexpr);
}