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

View File

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