mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 09:35:12 +00:00
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>
45 lines
487 B
C
45 lines
487 B
C
#undef LOG_PREFIX
|
|
#define LOG_PREFIX "cpu: "
|
|
|
|
#include <errno.h>
|
|
#include "cpu.h"
|
|
|
|
bool cpu_has_feature(unsigned int feature)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int cpu_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int cpu_dump_cpuinfo(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int cpu_validate_cpuinfo(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int cpu_dump_cpuinfo_single(void)
|
|
{
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
int cpu_validate_image_cpuinfo_single(void)
|
|
{
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
int cpuinfo_dump(void)
|
|
{
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
int cpuinfo_check(void)
|
|
{
|
|
return -ENOTSUP;
|
|
}
|