commit | c01417898a6e4f8a5663d6c0556982488c133cdf | [log] [tgz] |
---|---|---|
author | Chris Dearman <chris.dearman@imgtec.com> | Thu Nov 14 17:29:21 2013 -0800 |
committer | Chris Dearman <chris.dearman@imgtec.com> | Thu Nov 14 17:30:39 2013 -0800 |
tree | ea1596f2c93d8cd83d8cddc03fb7642b4920cbce | |
parent | fa91a0705ce6651a3f3f20dd55a86842eea65c2e [diff] |
[MIPS] Enable futex support Change-Id: I4095d889229fe1b96f7b276d7952b3578c8fcd6d
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.