summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/glib-2.0/glib-2.0/g_once_init_enter.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/glib-2.0/glib-2.0/g_once_init_enter.patch')
-rw-r--r--meta/recipes-core/glib-2.0/glib-2.0/g_once_init_enter.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-core/glib-2.0/glib-2.0/g_once_init_enter.patch b/meta/recipes-core/glib-2.0/glib-2.0/g_once_init_enter.patch
new file mode 100644
index 0000000000..a2a506c2ad
--- /dev/null
+++ b/meta/recipes-core/glib-2.0/glib-2.0/g_once_init_enter.patch
@@ -0,0 +1,22 @@
1fix g_once_init_enter compile failure
2
3Kernelshark trips over a compile bug in glib-2.0 addressed by Open Embedded
4back in the 2.22 timeframe. It appears to still be present in 2.27.
5
6http://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg005
7
8Signed-off-by: Darren Hart <dvhart@linux.intel.com>
9
10Index: glib-2.27.5/glib/gthread.h
11===================================================================
12--- glib-2.27.5.orig/glib/gthread.h
13+++ glib-2.27.5/glib/gthread.h
14@@ -344,7 +344,7 @@ void g_once_init_leav
15 G_INLINE_FUNC gboolean
16 g_once_init_enter (volatile gsize *value_location)
17 {
18- if G_LIKELY ((gpointer) g_atomic_pointer_get (value_location) != NULL)
19+ if G_LIKELY ((gpointer) g_atomic_pointer_get ((volatile gpointer *)value_location) != NULL)
20 return FALSE;
21 else
22 return g_once_init_enter_impl (value_location);