Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1304)

Unified Diff: runtime/vm/atomic_win.h

Issue 677193002: - Use the simulator to do atomic operations that could also (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/atomic_win.h
===================================================================
--- runtime/vm/atomic_win.h (revision 41298)
+++ runtime/vm/atomic_win.h (working copy)
@@ -28,6 +28,7 @@
}
+#if !defined(USING_SIMULATOR)
inline uword AtomicOperations::CompareAndSwapWord(uword* ptr,
uword old_value,
uword new_value) {
@@ -45,6 +46,7 @@
UNIMPLEMENTED();
#endif
}
+#endif // !defined(USING_SIMULATOR)
} // namespace dart

Powered by Google App Engine
This is Rietveld 408576698