/* * QEMU target info API * * Copyright (c) Linaro * * SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef QEMU_TARGET_INFO_H #define QEMU_TARGET_INFO_H /** * target_name: * * Returns: Canonical target name (i.e. "i386"). */ const char *target_name(void); /** * target_cpu_type: * * Returns: target CPU base QOM type name (i.e. TYPE_X86_CPU). */ const char *target_cpu_type(void); #endif