https://github.com/qemu/qemu
Raw File
Tip revision: 32b8913f725aaad6cf6aa7462a9b15e350a40b1d authored by Michael Tokarev on 30 March 2023, 07:12:46 UTC
Update version for 7.2.1 release
Tip revision: 32b8913
qdev.c
/*
 * QOM stubs
 *
 * Copyright (c) 2021 Red Hat, Inc.
 *
 * Author:
 *   Philippe Mathieu-Daudé <philmd@redhat.com>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#include "qemu/osdep.h"
#include "qapi/qapi-events-qdev.h"

void qapi_event_send_device_deleted(bool has_device,
                                    const char *device,
                                    const char *path)
{
    /* Nothing to do. */
}

void qapi_event_send_device_unplug_guest_error(bool has_device,
                                               const char *device,
                                               const char *path)
{
    /* Nothing to do. */
}
back to top