projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
757506d
)
Fix breakage due to __thread
author
Blue Swirl
<blauwirbel@gmail.com>
Mon, 31 Aug 2009 15:14:40 +0000
(15:14 +0000)
committer
Blue Swirl
<blauwirbel@gmail.com>
Mon, 31 Aug 2009 15:14:40 +0000
(15:14 +0000)
Thread-local storage is not supported on all hosts.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
monitor.c
patch
|
blob
|
history
diff --git
a/monitor.c
b/monitor.c
index 2559a625979c917e6b8be29288948e1cace9881a..41a83e6defcdbd59935625ca09794d37f7f1a52d 100644
(file)
--- a/
monitor.c
+++ b/
monitor.c
@@
-3229,7
+3229,7
@@
struct QemuErrorSink {
QemuErrorSink *previous;
};
-static
__thread
QemuErrorSink *qemu_error_sink;
+static QemuErrorSink *qemu_error_sink;
void qemu_errors_to_file(FILE *fp)
{