qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT 528e93a] Fix breakage due to __thread


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 528e93a] Fix breakage due to __thread
Date: Mon, 31 Aug 2009 15:48:04 -0000

From: Blue Swirl <address@hidden>

Thread-local storage is not supported on all hosts.

Signed-off-by: Blue Swirl <address@hidden>

diff --git a/monitor.c b/monitor.c
index 2559a62..41a83e6 100644
--- 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)
 {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]