source: trunk/packages/xen-3.1/xen-3.1/linux-2.6-xen-sparse/include/xen/xencons.h @ 34

Last change on this file since 34 was 34, checked in by hartmans, 18 years ago

Add xen and xen-common

File size: 511 bytes
Line 
1#ifndef __ASM_XENCONS_H__
2#define __ASM_XENCONS_H__
3
4struct dom0_vga_console_info;
5void dom0_init_screen_info(const struct dom0_vga_console_info *info);
6
7void xencons_force_flush(void);
8void xencons_resume(void);
9
10/* Interrupt work hooks. Receive data, or kick data out. */
11void xencons_rx(char *buf, unsigned len, struct pt_regs *regs);
12void xencons_tx(void);
13
14int xencons_ring_init(void);
15int xencons_ring_send(const char *data, unsigned len);
16
17void xencons_early_setup(void);
18
19#endif /* __ASM_XENCONS_H__ */
Note: See TracBrowser for help on using the repository browser.