| .. | |||||
| blkif.h | |||||
| console.h | |||||
| fbif.h | |||||
| kbdif.h | |||||
| netif.h | |||||
| pciif.h | |||||
| protocols.h | |||||
| ring.h | |||||
| tpmif.h | |||||
| xenbus.h | |||||
| xs_wire.h |
| Server IP : 103.169.32.36 / Your IP : 216.73.217.13 Web Server : Apache System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : apache ( 48) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/modules/3.10.0-1160.119.1.el7.x86_64/build/include/xen/interface/io/ |
Upload File : |
/******************************************************************************
* console.h
*
* Console I/O interface for Xen guest OSes.
*
* Copyright (c) 2005, Keir Fraser
*/
#ifndef __XEN_PUBLIC_IO_CONSOLE_H__
#define __XEN_PUBLIC_IO_CONSOLE_H__
typedef uint32_t XENCONS_RING_IDX;
#define MASK_XENCONS_IDX(idx, ring) ((idx) & (sizeof(ring)-1))
struct xencons_interface {
char in[1024];
char out[2048];
XENCONS_RING_IDX in_cons, in_prod;
XENCONS_RING_IDX out_cons, out_prod;
};
#endif /* __XEN_PUBLIC_IO_CONSOLE_H__ */
| .. | |||||
| blkif.h | |||||
| console.h | |||||
| fbif.h | |||||
| kbdif.h | |||||
| netif.h | |||||
| pciif.h | |||||
| protocols.h | |||||
| ring.h | |||||
| tpmif.h | |||||
| xenbus.h | |||||
| xs_wire.h |