parallels: move parallelsParseError to parallels_utils.h

This macro will be used in another file in the next
patch, so move it to common header file.

Signed-off-by: Dmitry Guryanov <dguryanov@parallels.com>
This commit is contained in:
Dmitry Guryanov 2012-12-11 14:59:44 +04:00 committed by Daniel Veillard
parent 880fcf6ab2
commit 68c6d3dc31
3 changed files with 5 additions and 4 deletions

View File

@ -77,6 +77,7 @@ src/openvz/openvz_driver.c
src/openvz/openvz_util.c
src/parallels/parallels_driver.c
src/parallels/parallels_utils.c
src/parallels/parallels_utils.h
src/parallels/parallels_storage.c
src/phyp/phyp_driver.c
src/qemu/qemu_agent.c

View File

@ -69,10 +69,6 @@
_("no domain with matching uuid '%s'"), uuidstr); \
} while (0)
#define parallelsParseError() \
virReportErrorHelper(VIR_FROM_TEST, VIR_ERR_OPERATION_FAILED, __FILE__, \
__FUNCTION__, __LINE__, _("Can't parse prlctl output"))
#define IS_CT(def) (STREQ_NULLABLE(def->os.type, "exe"))
static int parallelsClose(virConnectPtr conn);

View File

@ -30,6 +30,10 @@
# include "conf/domain_event.h"
# include "json.h"
# define parallelsParseError() \
virReportErrorHelper(VIR_FROM_TEST, VIR_ERR_OPERATION_FAILED, __FILE__, \
__FUNCTION__, __LINE__, _("Can't parse prlctl output"))
struct _parallelsConn {
virMutex lock;
virDomainObjList domains;