mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-23 02:17:22 +00:00
12 lines
341 B
C
12 lines
341 B
C
|
#ifndef __COMPEL_CPU_H__
|
||
|
#define __COMPEL_CPU_H__
|
||
|
|
||
|
#include <compel/cpu.h>
|
||
|
#include "asm/cpu.h"
|
||
|
|
||
|
extern void compel_set_cpu_cap(compel_cpuinfo_t *info, unsigned int feature);
|
||
|
extern void compel_clear_cpu_cap(compel_cpuinfo_t *info, unsigned int feature);
|
||
|
extern int compel_test_cpu_cap(compel_cpuinfo_t *info, unsigned int feature);
|
||
|
|
||
|
#endif
|