diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-04-10 08:10:41 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-04-10 08:10:41 -0500 |
commit | 72fe3aaed94936739abfa158fa28f147b75ae9ff (patch) | |
tree | dc7f090fe72b645a5b489ade9088d2125eb8a934 /main-loop.c | |
parent | 2c097f6003f2a11416706ae3252c2860ed2257a9 (diff) | |
parent | 53fbf7b5391c76cc474d469bfed6a69a1243f4de (diff) | |
download | qemu-72fe3aaed94936739abfa158fa28f147b75ae9ff.tar.gz qemu-72fe3aaed94936739abfa158fa28f147b75ae9ff.tar.bz2 qemu-72fe3aaed94936739abfa158fa28f147b75ae9ff.zip |
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
* stefanha/trivial-patches:
make: fix clean rule by removing build file in qom/
configure: Link qga against UST tracing related libraries
configure: Link QEMU against 'liburcu-bp'
main-loop: make qemu_event_handle static
block/curl: Replace usleep by g_usleep
qtest: Add missing GCC_FMT_ATTR
w32: Undefine error constants before their redefinition
configure: fix mingw32 libs_qga typo
Diffstat (limited to 'main-loop.c')
-rw-r--r-- | main-loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main-loop.c b/main-loop.c index 7e163f9428..1ebdc4baf1 100644 --- a/main-loop.c +++ b/main-loop.c @@ -164,7 +164,7 @@ static int qemu_signal_init(void) #else /* _WIN32 */ -HANDLE qemu_event_handle = NULL; +static HANDLE qemu_event_handle = NULL; static void dummy_event_handler(void *opaque) { |