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

* libcsupport/src/error.c: rtems_progname is no longer defined in
	the BSP startup since it never held a meaningful value.
This commit is contained in:
Joel Sherrill
2007-01-09 21:54:52 +00:00
parent bb22f14109
commit e411dda718
2 changed files with 5 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2007-01-09 Joel Sherrill <joel@OARcorp.com>
* libcsupport/src/error.c: rtems_progname is no longer defined in
the BSP startup since it never held a meaningful value.
2007-01-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* posix/include/aio.h: s/aoi_lio_opcode/aio_lio_opcode/

View File

@@ -61,7 +61,6 @@
char *strerror(int);
#endif
extern char *rtems_progname;
int rtems_panic_in_progress;
rtems_assoc_t rtems_status_assoc[] = {
@@ -136,8 +135,6 @@ static int rtems_verror(
if (_System_state_Is_multiprocessing)
fprintf(stderr, "[%" PRIu32 "] ", _Configuration_MP_table->node);
if (rtems_progname && *rtems_progname)
chars_written += fprintf(stderr, "%s: ", rtems_progname);
chars_written += vfprintf(stderr, printf_format, arglist);
if (status)