2 * GLIB Compatibility Functions
4 * Copyright IBM, Corp. 2013
7 * Anthony Liguori <aliguori@us.ibm.com>
8 * Michael Tokarev <mjt@tls.msk.ru>
9 * Paolo Bonzini <pbonzini@redhat.com>
11 * This work is licensed under the terms of the GNU GPL, version 2 or later.
12 * See the COPYING file in the top-level directory.
16 #ifndef QEMU_GLIB_COMPAT_H
17 #define QEMU_GLIB_COMPAT_H
21 /* GLIB version compatibility flags */
22 #if !GLIB_CHECK_VERSION(2, 26, 0)
23 #define G_TIME_SPAN_SECOND (G_GINT64_CONSTANT(1000000))
26 #if !GLIB_CHECK_VERSION(2, 14, 0)
27 static inline guint
g_timeout_add_seconds(guint interval
, GSourceFunc function
,
30 return g_timeout_add(interval
* 1000, function
, data
);
34 #if !GLIB_CHECK_VERSION(2, 28, 0)
35 static inline gint64
g_get_monotonic_time(void)
37 /* g_get_monotonic_time() is best-effort so we can use the wall clock as a
42 g_get_current_time(&time
);
44 return time
.tv_sec
* G_TIME_SPAN_SECOND
+ time
.tv_usec
;
48 #if !GLIB_CHECK_VERSION(2, 16, 0)
49 static inline int g_strcmp0(const char *str1
, const char *str2
)
54 result
= -(str1
!= str2
);
56 result
= (str1
!= str2
);
58 result
= strcmp(str1
, str2
);
67 * g_poll has a problem on Windows when using
68 * timeouts < 10ms, so use wrapper.
70 #define g_poll(fds, nfds, timeout) g_poll_fixed(fds, nfds, timeout)
71 gint
g_poll_fixed(GPollFD
*fds
, guint nfds
, gint timeout
);
72 #elif !GLIB_CHECK_VERSION(2, 20, 0)
74 * Glib before 2.20.0 doesn't implement g_poll, so wrap it to compile properly
77 static inline gint
g_poll(GPollFD
*fds
, guint nfds
, gint timeout
)
79 GMainContext
*ctx
= g_main_context_default();
80 return g_main_context_get_poll_func(ctx
)(fds
, nfds
, timeout
);
84 #if !GLIB_CHECK_VERSION(2, 31, 0)
85 /* before glib-2.31, GMutex and GCond was dynamic-only (there was a separate
86 * GStaticMutex, but it didn't work with condition variables).
88 * Our implementation uses GOnce to fake a static implementation that does
89 * not require separate initialization.
90 * We need to rename the types to avoid passing our CompatGMutex/CompatGCond
91 * by mistake to a function that expects GMutex/GCond. However, for ease
92 * of use we keep the GLib function names. GLib uses macros for the
93 * implementation, we use inline functions instead and undefine the macros.
96 typedef struct CompatGMutex
{
100 typedef struct CompatGCond
{
104 static inline gpointer
do_g_mutex_new(gpointer unused
)
106 return (gpointer
) g_mutex_new();
109 static inline void g_mutex_init(CompatGMutex
*mutex
)
111 mutex
->once
= (GOnce
) G_ONCE_INIT
;
114 static inline void g_mutex_clear(CompatGMutex
*mutex
)
116 assert(mutex
->once
.status
!= G_ONCE_STATUS_PROGRESS
);
117 if (mutex
->once
.retval
) {
118 g_mutex_free((GMutex
*) mutex
->once
.retval
);
120 mutex
->once
= (GOnce
) G_ONCE_INIT
;
123 static inline void (g_mutex_lock
)(CompatGMutex
*mutex
)
125 g_once(&mutex
->once
, do_g_mutex_new
, NULL
);
126 g_mutex_lock((GMutex
*) mutex
->once
.retval
);
130 static inline gboolean (g_mutex_trylock
)(CompatGMutex
*mutex
)
132 g_once(&mutex
->once
, do_g_mutex_new
, NULL
);
133 return g_mutex_trylock((GMutex
*) mutex
->once
.retval
);
135 #undef g_mutex_trylock
138 static inline void (g_mutex_unlock
)(CompatGMutex
*mutex
)
140 g_mutex_unlock((GMutex
*) mutex
->once
.retval
);
142 #undef g_mutex_unlock
144 static inline gpointer
do_g_cond_new(gpointer unused
)
146 return (gpointer
) g_cond_new();
149 static inline void g_cond_init(CompatGCond
*cond
)
151 cond
->once
= (GOnce
) G_ONCE_INIT
;
154 static inline void g_cond_clear(CompatGCond
*cond
)
156 assert(cond
->once
.status
!= G_ONCE_STATUS_PROGRESS
);
157 if (cond
->once
.retval
) {
158 g_cond_free((GCond
*) cond
->once
.retval
);
160 cond
->once
= (GOnce
) G_ONCE_INIT
;
163 static inline void (g_cond_wait
)(CompatGCond
*cond
, CompatGMutex
*mutex
)
165 assert(mutex
->once
.status
!= G_ONCE_STATUS_PROGRESS
);
166 g_once(&cond
->once
, do_g_cond_new
, NULL
);
167 g_cond_wait((GCond
*) cond
->once
.retval
, (GMutex
*) mutex
->once
.retval
);
171 static inline void (g_cond_broadcast
)(CompatGCond
*cond
)
173 g_once(&cond
->once
, do_g_cond_new
, NULL
);
174 g_cond_broadcast((GCond
*) cond
->once
.retval
);
176 #undef g_cond_broadcast
178 static inline void (g_cond_signal
)(CompatGCond
*cond
)
180 g_once(&cond
->once
, do_g_cond_new
, NULL
);
181 g_cond_signal((GCond
*) cond
->once
.retval
);
186 /* before 2.31 there was no g_thread_new() */
187 static inline GThread
*g_thread_new(const char *name
,
188 GThreadFunc func
, gpointer data
)
190 GThread
*thread
= g_thread_create(func
, data
, TRUE
, NULL
);
192 g_error("creating thread");
197 #define CompatGMutex GMutex
198 #define CompatGCond GCond
199 #endif /* glib 2.31 */