| 1 | /* |
| 2 | * QEMU Plugin user-mode helpers |
| 3 | * |
| 4 | * Helpers that are specific to user-mode. |
| 5 | * |
| 6 | * Copyright (C) 2017, Emilio G. Cota <cota@braap.org> |
| 7 | * Copyright (C) 2019-2025, Linaro |
| 8 | * |
| 9 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 10 | */ |
| 11 | |
| 12 | #include "qemu/osdep.h" |
| 13 | #include "qemu/plugin.h" |
| 14 | #include "plugin.h" |
| 15 | |
| 16 | void qemu_plugin_fillin_mode_info(qemu_info_t *info) |
| 17 | { |
| 18 | info->system_emulation = false; |
| 19 | } |