060185
diff -up tbb40_20110809oss/include/tbb/machine/linux_ia32.h\~ tbb40_20110809oss/include/tbb/machine/linux_ia32.h
060185
--- tbb40_20110809oss/include/tbb/machine/linux_ia32.h~	2011-08-24 15:51:56.000000000 +0200
060185
+++ tbb40_20110809oss/include/tbb/machine/linux_ia32.h	2011-10-18 15:04:01.994271994 +0200
060185
@@ -42,7 +42,14 @@
060185
 #define __TBB_control_consistency_helper() __TBB_compiler_fence()
060185
 #define __TBB_acquire_consistency_helper() __TBB_compiler_fence()
060185
 #define __TBB_release_consistency_helper() __TBB_compiler_fence()
060185
-#define __TBB_full_memory_fence()          __asm__ __volatile__("mfence": : :"memory")
060185
+#define __TBB_full_memory_fence()          __TBB_full_memory_fence_imp()
060185
+inline void __TBB_full_memory_fence_imp() {
060185
+    int tmp;
060185
+    __asm__ __volatile__("xchg %0,%0"
060185
+			 : "=r"(tmp)
060185
+			 : "r"(tmp)
060185
+			 : "memory");
060185
+}
060185
 
060185
 #if __TBB_ICC_ASM_VOLATILE_BROKEN
060185
 #define __TBB_VOLATILE
060185
060185
Diff finished.  Tue Oct 18 15:04:09 2011