mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
63 lines
2.5 KiB
C
63 lines
2.5 KiB
C
/*
|
|
* xm_internal.h: helper routines for dealing with inactive domains
|
|
*
|
|
* Copyright (C) 2006-2007 Red Hat
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _LIBVIRT_XM_INTERNAL_H_
|
|
#define _LIBVIRT_XM_INTERNAL_H_
|
|
|
|
#include "internal.h"
|
|
#include "conf.h"
|
|
#include "domain_conf.h"
|
|
|
|
extern struct xenUnifiedDriver xenXMDriver;
|
|
int xenXMInit (void);
|
|
|
|
int xenXMOpen(virConnectPtr conn, xmlURIPtr uri, virConnectAuthPtr auth, int flags);
|
|
int xenXMClose(virConnectPtr conn);
|
|
const char *xenXMGetType(virConnectPtr conn);
|
|
int xenXMDomainGetInfo(virDomainPtr domain, virDomainInfoPtr info);
|
|
char *xenXMDomainDumpXML(virDomainPtr domain, int flags);
|
|
int xenXMDomainSetMemory(virDomainPtr domain, unsigned long memory);
|
|
int xenXMDomainSetMaxMemory(virDomainPtr domain, unsigned long memory);
|
|
unsigned long xenXMDomainGetMaxMemory(virDomainPtr domain);
|
|
int xenXMDomainSetVcpus(virDomainPtr domain, unsigned int vcpus);
|
|
int xenXMDomainPinVcpu(virDomainPtr domain, unsigned int vcpu,
|
|
unsigned char *cpumap, int maplen);
|
|
virDomainPtr xenXMDomainLookupByName(virConnectPtr conn, const char *domname);
|
|
virDomainPtr xenXMDomainLookupByUUID(virConnectPtr conn,
|
|
const unsigned char *uuid);
|
|
|
|
int xenXMListDefinedDomains(virConnectPtr conn, char ** const names, int maxnames);
|
|
int xenXMNumOfDefinedDomains(virConnectPtr conn);
|
|
|
|
int xenXMDomainCreate(virDomainPtr domain);
|
|
virDomainPtr xenXMDomainDefineXML(virConnectPtr con, const char *xml);
|
|
int xenXMDomainUndefine(virDomainPtr domain);
|
|
|
|
virConfPtr xenXMDomainConfigFormat(virConnectPtr conn, virDomainDefPtr def);
|
|
virDomainDefPtr xenXMDomainConfigParse(virConnectPtr conn, virConfPtr conf);
|
|
|
|
int xenXMDomainBlockPeek (virDomainPtr dom, const char *path, unsigned long long offset, size_t size, void *buffer);
|
|
|
|
#endif
|