rng-random.c (5c74521d249486fa3e749dbbf6d56a70d4d7235f) rng-random.c (7b1b5d191385ca52e96caae2a05c64f3a63855d9)
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/rng-random.h"
14#include "qemu/rng.h"
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/rng-random.h"
14#include "qemu/rng.h"
15#include "qerror.h"
15#include "qapi/qmp/qerror.h"
16#include "main-loop.h"
17
18struct RndRandom
19{
20 RngBackend parent;
21
22 int fd;
23 char *filename;

--- 138 unchanged lines hidden ---
16#include "main-loop.h"
17
18struct RndRandom
19{
20 RngBackend parent;
21
22 int fd;
23 char *filename;

--- 138 unchanged lines hidden ---