1 #ifndef KVM_ANDROID_H 2 #define KVM_ANDROID_H 3 4 // Name of environment variable used to control the name of the device 5 // to use, when it is not /dev/kvm 6 #define KVM_DEVICE_NAME_ENV "ANDROID_EMULATOR_KVM_DEVICE" 7 8 /* Returns 1 if we can use /dev/kvm on this machine */ 9 extern int kvm_check_allowed(void); 10 11 #endif /* KVM_ANDROID_H */ 12