hen-0.0.2: Haskell bindings to Xen hypervisor interface

Safe HaskellNone

System.Xen.Types

Description

Types for working with XenCtrl data and accoring Storable instances.

Synopsis

Documentation

newtype XcHandle Source

Entry point of the hypervisor interface connection, it's a file descriptor in xen 3 and pointer to corresponging structure in xen 4.

Constructors

XcHandle CIntPtr 

newtype DomId Source

Domain id, wrapper around Word32.

Constructors

DomId 

Fields

unDomId :: Word32
 

data DomainFlag Source

Domain flags. It's translated from xc_dominfo structure, so it's possible to be mutual exclusion flags in one domain, e.g. DomainFlagShutdown and DomainFlagRunning.