summaryrefslogtreecommitdiffstats
path: root/runtime/base
diff options
context:
space:
mode:
authorChris Dearman <chris.dearman@imgtec.com>2013-11-14 17:29:21 -0800
committerChris Dearman <chris.dearman@imgtec.com>2013-11-14 17:30:39 -0800
commitc01417898a6e4f8a5663d6c0556982488c133cdf (patch)
treeea1596f2c93d8cd83d8cddc03fb7642b4920cbce /runtime/base
parentfa91a0705ce6651a3f3f20dd55a86842eea65c2e (diff)
downloadart-c01417898a6e4f8a5663d6c0556982488c133cdf.zip
art-c01417898a6e4f8a5663d6c0556982488c133cdf.tar.gz
art-c01417898a6e4f8a5663d6c0556982488c133cdf.tar.bz2
[MIPS] Enable futex support
Change-Id: I4095d889229fe1b96f7b276d7952b3578c8fcd6d
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 ee37388..3e05b10 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.