empty G_ATOMIC_MEMORY_BARRIER() definition for !G_THREADS_ENABLED

2004-02-26  Sebastian Wilhelmi  <seppi@seppi.de>

	* glib/gatomic.h: empty G_ATOMIC_MEMORY_BARRIER() definition for
	!G_THREADS_ENABLED
This commit is contained in:
Sebastian Wilhelmi 2004-02-26 17:31:38 +00:00 committed by Sebastian Wilhelmi
parent 73e3e63dc3
commit 42bba4008f

View File

@ -494,18 +494,6 @@ g_atomic_pointer_compare_and_exchange (gpointer *atomic,
# else /* !__GNU__ */ # else /* !__GNU__ */
# define G_ATOMIC_USE_FALLBACK_IMPLEMENTATION # define G_ATOMIC_USE_FALLBACK_IMPLEMENTATION
# endif /* __GNUC__ */ # endif /* __GNUC__ */
#else /* !G_THREADS_ENABLED */
gint32 g_atomic_int_exchange_and_add (gint32 *atomic, gint32 val);
# define g_atomic_int_add(atomic, val) (void)(*(atomic) += (val))
# define g_atomic_int_compare_and_exchange(atomic, oldval, newval) \
(*(atomic) == (oldval) ? (*(atomic) = (newval), TRUE) : FALSE)
# define g_atomic_pointer_compare_and_exchange(atomic, oldval, newval) \
(*(atomic) == (oldval) ? (*(atomic) = (newval), TRUE) : FALSE)
# define g_atomic_int_get(atomic) (*(atomic))
# define g_atomic_pointer_get(atomic) (*(atomic))
# define G_ATOMIC_MEMORY_BARRIER() /* Not needed */
#endif /* G_THREADS_ENABLED */
# ifdef G_ATOMIC_USE_FALLBACK_IMPLEMENTATION # ifdef G_ATOMIC_USE_FALLBACK_IMPLEMENTATION
# define g_atomic_int_exchange_and_add \ # define g_atomic_int_exchange_and_add \
g_atomic_int_exchange_and_add_fallback g_atomic_int_exchange_and_add_fallback
@ -536,6 +524,17 @@ g_atomic_pointer_get (gpointer *atomic)
return result; return result;
} }
# endif /* G_ATOMIC_USE_FALLBACK_IMPLEMENTATION */ # endif /* G_ATOMIC_USE_FALLBACK_IMPLEMENTATION */
#else /* !G_THREADS_ENABLED */
gint32 g_atomic_int_exchange_and_add (gint32 *atomic, gint32 val);
# define g_atomic_int_add(atomic, val) (void)(*(atomic) += (val))
# define g_atomic_int_compare_and_exchange(atomic, oldval, newval) \
(*(atomic) == (oldval) ? (*(atomic) = (newval), TRUE) : FALSE)
# define g_atomic_pointer_compare_and_exchange(atomic, oldval, newval) \
(*(atomic) == (oldval) ? (*(atomic) = (newval), TRUE) : FALSE)
# define g_atomic_int_get(atomic) (*(atomic))
# define g_atomic_pointer_get(atomic) (*(atomic))
# define G_ATOMIC_MEMORY_BARRIER() /* Not needed */
#endif /* G_THREADS_ENABLED */
#define g_atomic_int_inc(atomic) (g_atomic_int_add ((atomic), 1)) #define g_atomic_int_inc(atomic) (g_atomic_int_add ((atomic), 1))
#define g_atomic_int_dec_and_test(atomic) \ #define g_atomic_int_dec_and_test(atomic) \