summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/panic.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sapi/src/panic.c: Add include of <rtems/bspIo.h>Joel Sherrill2017-11-291-0/+1
|
* sapi: New implementation of rtems_panic()Sebastian Huber2017-11-221-0/+32
The previous rtems_panic() implementation was quite heavy weight. It depended on _exit() which calls the global destructors. It used fprintf(stderr, ...) for output which depends on an initialized console device and the complex fprintf(). Introduce a new fatal source RTEMS_FATAL_SOURCE_PANIC for rtems_panic() and output via vprintk(). Update #3244.