aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/console.h
diff options
context:
space:
mode:
authorcl349@arcadians.cl.cam.ac.uk <cl349@arcadians.cl.cam.ac.uk>2005-02-22 01:15:04 +0000
committercl349@arcadians.cl.cam.ac.uk <cl349@arcadians.cl.cam.ac.uk>2005-02-22 01:15:04 +0000
commit4df74981e6cdd93c29c216276c12bf7d2b5ac390 (patch)
tree237cac35c83426432ccb57af10e34b1163cf07c5 /xen/include/xen/console.h
parent4ebf324ef808a7c3b602d18d71ea0394ca84ba63 (diff)
downloadxen-4df74981e6cdd93c29c216276c12bf7d2b5ac390.tar.gz
xen-4df74981e6cdd93c29c216276c12bf7d2b5ac390.tar.bz2
xen-4df74981e6cdd93c29c216276c12bf7d2b5ac390.zip
bitkeeper revision 1.1230.2.2 (421a8798mvsMIGmWCHsDOB-iq7xzGg)
Bring back the console_{putc,getc} set of functions, which export access to the console without exporting the sercon_handle. Signed-off-by: chris@xensource.com
Diffstat (limited to 'xen/include/xen/console.h')
-rw-r--r--xen/include/xen/console.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/xen/include/xen/console.h b/xen/include/xen/console.h
index 024840c0ad..f65633a1af 100644
--- a/xen/include/xen/console.h
+++ b/xen/include/xen/console.h
@@ -22,4 +22,8 @@ void console_endboot(int disable_vga);
void console_force_unlock(void);
void console_force_lock(void);
+void console_putc(char c);
+int console_getc(void);
+int irq_console_getc(void);
+
#endif /* __CONSOLE_H__ */