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

Unified Diff: src/runtime/runtime.h

Issue 1208933006: Atomics Futex API (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: error message Created 5 years, 5 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: 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) \
« src/harmony-atomics.js ('K') | « src/messages.h ('k') | src/runtime/runtime-futex.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698