RTEMS
|
User print interface to the bspIO print plug in. More...
Go to the source code of this file.
Typedefs | |
typedef struct rtems_printer | rtems_printer |
Functions | |
int | rtems_printf (const rtems_printer *printer, const char *format,...) RTEMS_PRINTFLIKE(2 |
Print to the kernel plugin handler. This has to be a macro because there is no vprint version of the plug in handlers. More... | |
int int | rtems_vprintf (const rtems_printer *printer, const char *format, va_list ap) |
Print to the kernel plugin handler. This has to be a macro because there is no vprint version of the plug in handlers. More... | |
User print interface to the bspIO print plug in.
This include file defines the user interface to kernel print methods.
Definition in file print.h.
int rtems_printf | ( | const rtems_printer * | printer, |
const char * | format, | ||
... | |||
) |
Print to the kernel plugin handler. This has to be a macro because there is no vprint version of the plug in handlers.
[in] | printer | Pointer to the printer structure. |
[in] | fmt | Print format string. |
[in] | ... | Print variable argument list. |
int int rtems_vprintf | ( | const rtems_printer * | printer, |
const char * | format, | ||
va_list | ap | ||
) |
Print to the kernel plugin handler. This has to be a macro because there is no vprint version of the plug in handlers.
[in] | printer | Pointer to the printer structure. |
[in] | fmt | Print format string. |
[in] | ap | Print variable argument list pointer. |
Definition at line 23 of file print_printf.c.