cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

dbus.h (436B)


      1/*
      2 * Helpers for using D-Bus
      3 *
      4 * Copyright (C) 2019 Red Hat, Inc.
      5 *
      6 * This work is licensed under the terms of the GNU GPL, version 2.  See
      7 * the COPYING file in the top-level directory.
      8 */
      9
     10#ifndef DBUS_H
     11#define DBUS_H
     12
     13#include <gio/gio.h>
     14
     15GStrv qemu_dbus_get_queued_owners(GDBusConnection *connection,
     16                                  const char *name,
     17                                  Error **errp);
     18
     19#endif /* DBUS_H */