mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
gst/gstatomic_impl.h: Enable atomic code for x86_64
Original commit message from CVS: * gst/gstatomic_impl.h: Enable atomic code for x86_64
This commit is contained in:
parent
d2172d6881
commit
6ef8f673c9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-07-30 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/gstatomic_impl.h: Enable atomic code for x86_64
|
||||
|
||||
2004-07-29 David Schleef <ds@schleef.org>
|
||||
|
||||
* libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test):
|
||||
|
|
|
@ -38,7 +38,7 @@ G_BEGIN_DECLS
|
|||
#if defined (GST_CAN_INLINE) || defined (__GST_ATOMIC_C__)
|
||||
|
||||
/***** Intel x86 *****/
|
||||
#if defined (HAVE_CPU_I386) && defined(__GNUC__)
|
||||
#if (defined (HAVE_CPU_I386) || defined (HAVE_CPU_X86_64)) && defined(__GNUC__)
|
||||
|
||||
#ifdef GST_CONFIG_NO_SMP
|
||||
#define SMP_LOCK ""
|
||||
|
|
Loading…
Reference in a new issue