rng.c (a3206972a9eab65ec8e8f9ae320ad628ba4b58f1) rng.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.h"
14#include "qapi/qmp/qerror.h"
15#include "qom/object_interfaces.h"
16
17void rng_backend_request_entropy(RngBackend *s, size_t size,
18 EntropyReceiveFunc *receive_entropy,
19 void *opaque)
20{

--- 89 unchanged lines hidden ---
14#include "sysemu/rng.h"
15#include "qapi/qmp/qerror.h"
16#include "qom/object_interfaces.h"
17
18void rng_backend_request_entropy(RngBackend *s, size_t size,
19 EntropyReceiveFunc *receive_entropy,
20 void *opaque)
21{

--- 89 unchanged lines hidden ---