2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-29 21:38:16 +00:00

cpuinfo: arm -- Fix build

Add missing implementations for ARM platforms.

Reported-by: Mr. Travis
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov 2014-10-03 14:45:00 +04:00 committed by Pavel Emelyanov
parent cd1a6dc97f
commit b52935d7b9
2 changed files with 20 additions and 0 deletions

View File

@ -33,3 +33,13 @@ int cpu_validate_image_cpuinfo_single(void)
{
return -ENOTSUP;
}
int cpuinfo_dump(void)
{
return -ENOTSUP;
}
int cpuinfo_check(void)
{
return -ENOTSUP;
}

View File

@ -33,3 +33,13 @@ int cpu_validate_image_cpuinfo_single(void)
{
return -ENOTSUP;
}
int cpuinfo_dump(void)
{
return -ENOTSUP;
}
int cpuinfo_check(void)
{
return -ENOTSUP;
}