Changeset 5c370a5d in rtems
- Timestamp:
- 06/21/16 11:05:50 (7 years ago)
- Branches:
- 5, master
- Children:
- e8020d1
- Parents:
- 1ce8fc3
- git-author:
- Sebastian Huber <sebastian.huber@…> (06/21/16 11:05:50)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (06/22/16 05:29:26)
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/include/rtems/bspIo.h
r1ce8fc3 r5c370a5d 142 142 typedef int (*rtems_print_plugin_t)(void *, const char *format, va_list ap); 143 143 144 /**145 * @brief Reporting Methods fprintf() Plugin146 *147 * This is a standard plug-in to support using fprintf() for output148 * instead of printk().149 *150 * @param[in] context The file stream.151 * @param[in] fmt is a printf()-style format string152 *153 * @return The number of characters printed.154 */155 extern int rtems_fprintf_plugin(void *context, const char *fmt, va_list ap);156 157 144 /**@}*/ 158 145 -
cpukit/libcsupport/src/print_fprintf.c
r1ce8fc3 r5c370a5d 23 23 #include <stdio.h> 24 24 25 int rtems_fprintf_plugin(void *context, const char *fmt, va_list ap)25 static int rtems_fprintf_plugin(void *context, const char *fmt, va_list ap) 26 26 { 27 27 return vfprintf(context, fmt, ap);
Note: See TracChangeset
for help on using the changeset viewer.