Ignore:
Timestamp:
2006-08-02T00:00:39Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deaa22f
Parents:
7c5a8dd
Message:

remap console page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/xen32/include/drivers/xconsole.h

    r7c5a8dd radf7f9c  
    3636#define __XCONSOLE_H__
    3737
     38#include <arch/types.h>
     39
     40typedef 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
     49extern xencons_t console_page;
     50
    3851extern void xen_console_init(void);
    3952
Note: See TracChangeset for help on using the changeset viewer.