Beispiel #1
0
void uid_print_message(
  struct MW_UID_MESSAGE *uid
)
{
  rtems_printer printer;
  rtems_print_printer_printk(&printer);
  uid_print_message_with_plugin( &printer, uid );
}
Beispiel #2
0
void printf_uid_message(
  struct MW_UID_MESSAGE *uid
)
{
  uid_print_message_with_plugin(
    stdout,
    (rtems_printk_plugin_t)fprintf,
    uid
  );
}