Subversion Repositories HelenOS

Rev

Rev 1816 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1816 Rev 1832
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef __XCONSOLE_H__
35
#ifndef __XCONSOLE_H__
36
#define __XCONSOLE_H__
36
#define __XCONSOLE_H__
37
 
37
 
-
 
38
#include <arch/types.h>
-
 
39
 
-
 
40
typedef struct {
-
 
41
    char in[1024];
-
 
42
    char out[2048];
-
 
43
    uint32_t in_cons;
-
 
44
    uint32_t in_prod;
-
 
45
    uint32_t out_cons;
-
 
46
    uint32_t out_prod;
-
 
47
} xencons_t;
-
 
48
 
-
 
49
extern xencons_t console_page;
-
 
50
 
38
extern void xen_console_init(void);
51
extern void xen_console_init(void);
39
 
52
 
40
#endif
53
#endif
41
 
54
 
42
/** @}
55
/** @}