mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-31 06:13:53 -06:00

Linux has <misc/pvpanic.h>, not <linux/pvpanic.h>. Use the same directory for QEMU's include/standard-headers/ copy. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
9 lines
209 B
C
9 lines
209 B
C
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
|
|
#ifndef __PVPANIC_H__
|
|
#define __PVPANIC_H__
|
|
|
|
#define PVPANIC_PANICKED (1 << 0)
|
|
#define PVPANIC_CRASH_LOADED (1 << 1)
|
|
|
|
#endif /* __PVPANIC_H__ */
|