1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-04-06 07:43:07 +02:00

GAsyncQueue: Make ref_count a volatile gint

This commit is contained in:
Matthias Clasen 2011-05-28 22:02:13 -04:00
parent a33abe9c21
commit a4f00f39da

@ -95,7 +95,7 @@ struct _GAsyncQueue
GQueue queue; GQueue queue;
GDestroyNotify item_free_func; GDestroyNotify item_free_func;
guint waiting_threads; guint waiting_threads;
gint32 ref_count; volatile gint ref_count;
}; };
typedef struct { typedef struct {