Revision 7dc688ed

b/migration.c
31 31
    do { } while (0)
32 32
#endif
33 33

  
34
enum {
35
    MIG_STATE_ERROR,
36
    MIG_STATE_SETUP,
37
    MIG_STATE_CANCELLED,
38
    MIG_STATE_ACTIVE,
39
    MIG_STATE_COMPLETED,
40
};
41

  
34 42
#define MAX_THROTTLE  (32 << 20)      /* Migration speed throttling */
35 43

  
36 44
static NotifierList migration_state_notifiers =
b/migration.h
18 18
#include "qemu-common.h"
19 19
#include "notify.h"
20 20

  
21
enum {
22
    MIG_STATE_ERROR,
23
    MIG_STATE_SETUP,
24
    MIG_STATE_CANCELLED,
25
    MIG_STATE_ACTIVE,
26
    MIG_STATE_COMPLETED,
27
};
28

  
29 21
typedef struct MigrationState MigrationState;
30 22

  
31 23
struct MigrationState

Also available in: Unified diff