summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/iovprintf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Add a FALLTHROUGH comment to kvprintf()Sebastian Huber2018-07-181-1/+4
| | | | | | This change was added to the FreeBSD version of this function. This was spotted by Coverity Scan.
* score: Add _IO_Printf() and _IO_Vprintf()Sebastian Huber2017-11-061-0/+365
The previous vprintk() implementation had a questionable licence header, lacks support for the 'z' and 'j' format specifiers, is not robust against invalid format specifiers, uses a global variable for output. Replace it with a stripped down version of the FreeBSD kernel kvprintf() function. The new implementation allows a low overhead rtems_snprintf() if necessary. Update #3199. Close #3216.