Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 3843 → Rev 3844

/trunk/kernel/arch/ia32xen/src/drivers/xconsole.c
55,8 → 55,9
stdout = &xen_console;
}
 
void xen_putchar(chardev_t *d, const char ch)
void xen_putchar(chardev_t *d, const char ch, bool silent)
{
if (!silent) {
if (start_info.console.domU.evtchn != 0) {
uint32_t cons = console_page.out_cons;
uint32_t prod = console_page.out_prod;
78,6 → 79,7
} else
xen_console_io(CONSOLE_IO_WRITE, 1, &ch);
}
}
 
/** @}
*/