Chromium Code Reviews| Index: runtime/vm/atomic.h |
| diff --git a/runtime/vm/atomic.h b/runtime/vm/atomic.h |
| index fc6257ec7ef95354dec1cad327cf59d7e48782ae..026762f2c611871a87bb8883c166a6f5f370617e 100644 |
| --- a/runtime/vm/atomic.h |
| +++ b/runtime/vm/atomic.h |
| @@ -26,6 +26,7 @@ class AtomicOperations : public AllStatic { |
| // NOTE: Not to be used for any atomic operations involving memory locations |
| // that are accessed by generated code. |
| static void IncrementBy(intptr_t* p, intptr_t value); |
| + static void IncrementInt64By(int64_t* p, int64_t value); |
|
hausner
2016/03/30 19:49:20
There seem to be missing implementations of this,
srdjan
2016/03/30 20:14:04
Implemented on windows, not needed for simulator (
|
| // Atomically fetch the value at p and decrement the value at p. |
| // Returns the original value at p. |