You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2007/04/18 13:44:19 UTC

svn commit: r529989 - /harmony/enhanced/drlvm/trunk/vm/include/open/hythread.h

Author: varlax
Date: Wed Apr 18 04:44:18 2007
New Revision: 529989

URL: http://svn.apache.org/viewvc?view=rev&rev=529989
Log:
Temporarily disabled fast TLS for x64 while investigating failing assert.

Modified:
    harmony/enhanced/drlvm/trunk/vm/include/open/hythread.h

Modified: harmony/enhanced/drlvm/trunk/vm/include/open/hythread.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/include/open/hythread.h?view=diff&rev=529989&r1=529988&r2=529989
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/include/open/hythread.h (original)
+++ harmony/enhanced/drlvm/trunk/vm/include/open/hythread.h Wed Apr 18 04:44:18 2007
@@ -419,7 +419,7 @@
 #elif defined(__linux__)
     // some kind of nix - the threads internals are known for IA32/Intel64
     // kernels, will use slow way on other HWs (TODO: add IPF support)
-#   if defined(_IA32_) || defined(_EM64T_)
+#   if defined(_IA32_)
 #       define HYTHREAD_FAST_TLS (1)
 #       define HYTHREAD_FAST_TLS_ATTRIBUTE __attribute__((tls_model("initial-exec")))
 #   endif