GNOME Bugzilla – Bug 740270
'g_mutex_new' is deprecated
Last modified: 2015-02-27 16:58:38 UTC
AtkWrapper.c:187:3: https://developer.gnome.org/glib/stable/glib-Deprecated-Thread-APIs.html#g-mutex-new Apparently it is better to use g_mutex_init () https://developer.gnome.org/glib/stable/glib-Threads.html#g-mutex-init Which is a bit more fiddly under these circumstances because it seems like a lot would have to be global for the various functions that call atk_bridge_mutex to be able to do that as they are: typedef struct { GMutex m; ... } Blob; Blob *b; b = g_new (Blob, 1); g_mutex_init (&b->m)
Created attachment 291126 [details] [review] patch to fix warning
[Moving at-spi/java-atk-wrapper bugs to separate product. See bug 740075]