mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-29 06:20:26 +00:00
17 lines
324 B
C
17 lines
324 B
C
|
/*
|
||
|
* QEMU KVM support -- x86 specific functions.
|
||
|
*
|
||
|
* Copyright (c) 2012 Linaro Limited
|
||
|
*
|
||
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||
|
* See the COPYING file in the top-level directory.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef QEMU_KVM_I386_H
|
||
|
#define QEMU_KVM_I386_H
|
||
|
|
||
|
bool kvm_allows_irq0_override(void);
|
||
|
|
||
|
#endif
|