Revision d5934dde migration.h

b/migration.h
18 18
#include "qemu-common.h"
19 19
#include "notify.h"
20 20

  
21
#define MIG_STATE_ERROR		-1
22
#define MIG_STATE_COMPLETED	0
23
#define MIG_STATE_CANCELLED	1
24
#define MIG_STATE_ACTIVE	2
21
enum {
22
    MIG_STATE_ERROR,
23
    MIG_STATE_SETUP,
24
    MIG_STATE_CANCELLED,
25
    MIG_STATE_ACTIVE,
26
    MIG_STATE_COMPLETED,
27
};
25 28

  
26 29
typedef struct MigrationState MigrationState;
27 30

  

Also available in: Unified diff