bluez/gobex
Lucas De Marchi d073af52ea gobex: Use gcc builtin instead of g_atomic
g_atomic_* end up using G_STATIC_ASSERT, causing gcc 4.8 to yell due to
-Wunused-local-typedefs.

/usr/include/glib-2.0/glib/gmacros.h:162:53: error: typedef ‘_GStaticAssertCompileTimeAssertion_2’ locally defined but not used [-Werror=unused-local-typedefs]
 #define G_STATIC_ASSERT(expr) typedef char G_PASTE (_GStaticAssertCompileTimeAssertion_, __COUNTER__)[(expr) ? 1 : -1]

Most of the uses of atomic operations were wrong. They were fixed as
well. If we are using atomic operations, reading the variable again
later for logging is not an option, we should use the return of the
atomic function used to fetch the variable.
2013-04-09 07:01:58 +09:00
..
gobex-apparam.c gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-apparam.h gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-debug.h gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-defs.c gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-defs.h gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-header.c gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-header.h gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-packet.c gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-packet.h gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex-transfer.c gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00
gobex.c gobex: Use gcc builtin instead of g_atomic 2013-04-09 07:01:58 +09:00
gobex.h gobex: Fix GPL version reference 2013-02-15 16:25:29 +02:00