forked from Blopeur/qemu-heca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheca-stub.c
More file actions
51 lines (39 loc) · 675 Bytes
/
heca-stub.c
File metadata and controls
51 lines (39 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include "heca.h"
void heca_init(void* ram_ptr, uint64_t ram_size)
{
}
void heca_migrate_dest_init(const char* dest_ip, const char* source_ip)
{
}
void heca_migrate_src_init(const char* dest_ip, int precopy_time)
{
}
void heca_set_post_copy_phase(void)
{
}
bool heca_is_mig_timer_expired(void)
{
return false;
}
void heca_master_cmdline_init(const char* optarg)
{
}
void heca_client_cmdline_init(const char* optarg)
{
}
bool heca_is_master(void)
{
return false;
}
bool heca_is_enabled(void)
{
return false;
}
int heca_unmap_dirty_bitmap(uint8_t *bitmap, uint32_t bitmap_size)
{
return -1;
}
bool heca_is_pre_copy_phase(void)
{
return false;
}