Files
linux-apfs/include/xen/hvc-console.h
T

19 lines
479 B
C
Raw Normal View History

#ifndef XEN_HVC_CONSOLE_H
#define XEN_HVC_CONSOLE_H
extern struct console xenboot_console;
2008-05-29 09:31:50 +02:00
#ifdef CONFIG_HVC_XEN
2008-05-26 23:31:25 +01:00
void xen_console_resume(void);
void xen_raw_console_write(const char *str);
__printf(1, 2)
void xen_raw_printk(const char *fmt, ...);
2008-07-09 13:15:03 +02:00
#else
static inline void xen_console_resume(void) { }
static inline void xen_raw_console_write(const char *str) { }
static inline __printf(1, 2)
void xen_raw_printk(const char *fmt, ...) { }
2008-07-09 13:15:03 +02:00
#endif
#endif /* XEN_HVC_CONSOLE_H */