Chromium Code Reviews| Index: src/runtime/runtime.h |
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
| index da1ae40ba068cb4c58e7a9ac5595f3dfc2f4e995..6196036a0b683d881f1fdd129b9bdb22bca5cae1 100644 |
| --- a/src/runtime/runtime.h |
| +++ b/src/runtime/runtime.h |
| @@ -63,7 +63,11 @@ namespace internal { |
| F(AtomicsOr, 3, 1) \ |
| F(AtomicsXor, 3, 1) \ |
| F(AtomicsExchange, 3, 1) \ |
| - F(AtomicsIsLockFree, 1, 1) |
| + F(AtomicsIsLockFree, 1, 1) \ |
| + F(AtomicsFutexWait, 4, 1) \ |
|
Michael Starzinger
2015/07/08 17:54:20
Please add a new FOR_EACH_INTRINSIC_FUTEX macro, e
binji
2015/07/08 18:05:29
Done.
|
| + F(AtomicsFutexWake, 3, 1) \ |
| + F(AtomicsFutexWakeOrRequeue, 5, 1) \ |
| + F(AtomicsFutexNumWaitersForTesting, 2, 1) |
| #define FOR_EACH_INTRINSIC_CLASSES(F) \ |