qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 22/22] migration: Make state definitions local


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 22/22] migration: Make state definitions local
Date: Wed, 23 Feb 2011 01:44:36 +0100

Signed-off-by: Juan Quintela <address@hidden>
---
 migration.c |    6 ++++++
 migration.h |    6 ------
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/migration.c b/migration.c
index 383ebaf..90fc2a0 100644
--- a/migration.c
+++ b/migration.c
@@ -31,6 +31,12 @@
     do { } while (0)
 #endif

+#define MIG_STATE_ERROR                -1
+#define MIG_STATE_NONE         0
+#define MIG_STATE_CANCELLED    1
+#define MIG_STATE_ACTIVE       2
+#define MIG_STATE_COMPLETED    3
+
 static MigrationState current_migration = {
     .state = MIG_STATE_NONE,
      /* Migration speed throttling */
diff --git a/migration.h b/migration.h
index 9457807..493fbe5 100644
--- a/migration.h
+++ b/migration.h
@@ -18,12 +18,6 @@
 #include "qemu-common.h"
 #include "notify.h"

-#define MIG_STATE_ERROR                -1
-#define MIG_STATE_NONE         0
-#define MIG_STATE_CANCELLED    1
-#define MIG_STATE_ACTIVE       2
-#define MIG_STATE_COMPLETED    3
-
 typedef struct MigrationState MigrationState;

 struct MigrationState
-- 
1.7.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]