summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-11-26 22:31:08 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-11-26 22:31:08 +0000
commitaf82e0cce0f7fe5611c47493372183a7963397bf (patch)
treecbe4b1eccd07c30587f47575192d11321704aa9d /runtime/base
parent83a9962f4062cd91e823a2a948aba3887cbe32aa (diff)
parentc01417898a6e4f8a5663d6c0556982488c133cdf (diff)
downloadart-af82e0cce0f7fe5611c47493372183a7963397bf.zip
art-af82e0cce0f7fe5611c47493372183a7963397bf.tar.gz
art-af82e0cce0f7fe5611c47493372183a7963397bf.tar.bz2
Merge "[MIPS] Enable futex support"
Diffstat (limited to 'runtime/base')
-rw-r--r--runtime/base/mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/mutex.h b/runtime/base/mutex.h
index feb8a6c..b894c0a 100644
--- a/runtime/base/mutex.h
+++ b/runtime/base/mutex.h
@@ -32,7 +32,7 @@
#if defined(__APPLE__)
#define ART_USE_FUTEXES 0
#else
-#define ART_USE_FUTEXES !defined(__mips__)
+#define ART_USE_FUTEXES 1
#endif
// Currently Darwin doesn't support locks with timeouts.