rng-random.c (a3206972a9eab65ec8e8f9ae320ad628ba4b58f1) rng-random.c (9c058332f36bc84db57f3d54566228799c5e9605)
1/*
2 * QEMU Random Number Generator Backend
3 *
4 * Copyright IBM, Corp. 2012
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12
1/*
2 * QEMU Random Number Generator Backend
3 *
4 * Copyright IBM, Corp. 2012
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
11 */
12
13#include "qemu/osdep.h"
13#include "sysemu/rng-random.h"
14#include "sysemu/rng.h"
15#include "qapi/qmp/qerror.h"
16#include "qemu/main-loop.h"
17
18struct RndRandom
19{
20 RngBackend parent;

--- 136 unchanged lines hidden ---
14#include "sysemu/rng-random.h"
15#include "sysemu/rng.h"
16#include "qapi/qmp/qerror.h"
17#include "qemu/main-loop.h"
18
19struct RndRandom
20{
21 RngBackend parent;

--- 136 unchanged lines hidden ---