https://github.com/qemu/qemu
Raw File
Tip revision: 6d40ce00c1166c317e298ad82ecf10e650c4f87d authored by Peter Maydell on 30 March 2021, 17:19:07 UTC
Update version for v6.0.0-rc1 release
Tip revision: 6d40ce0
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. */
}
back to top