diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-05-26 23:30:59 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-27 10:11:35 +0200 |
commit | 0acf10d8fbd52926217d3933d196b33fe2468f18 (patch) | |
tree | 938555cc132ffb6ad3bc242e09dc7497a6040007 /include/xen | |
parent | 3843fc2575e3389f4f0ad0420a720240a5746a5d (diff) | |
download | op-kernel-dev-0acf10d8fbd52926217d3933d196b33fe2468f18.zip op-kernel-dev-0acf10d8fbd52926217d3933d196b33fe2468f18.tar.gz |
xen: add raw console write functions for debug
Add a couple of functions which can write directly to the Xen console
for debugging. This output ends up on the host's dom0 console
(assuming it allows the domain to write there).
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/hvc-console.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/xen/hvc-console.h b/include/xen/hvc-console.h index 21c0ecf..efc3237 100644 --- a/include/xen/hvc-console.h +++ b/include/xen/hvc-console.h @@ -3,4 +3,7 @@ extern struct console xenboot_console; +void xen_raw_console_write(const char *str); +void xen_raw_printk(const char *fmt, ...); + #endif /* XEN_HVC_CONSOLE_H */ |