Chromium Code Reviews

Unified Diff: src/platform/mutex.h

Issue 23710014: Introduce concurrent on-stack replacement. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: addressed comments Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/optimizing-compiler-thread.cc ('k') | src/runtime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/mutex.h
diff --git a/src/platform/mutex.h b/src/platform/mutex.h
index 19405424102c377130f08e071387d1c616e49ab7..8769d74d2380cf36eabd581b9b0f1bfca96fdfd9 100644
--- a/src/platform/mutex.h
+++ b/src/platform/mutex.h
@@ -214,8 +214,7 @@ class LockGuard V8_FINAL {
private:
Mutex* mutex_;
- LockGuard(const LockGuard<Mutex>& other) V8_DELETE;
- LockGuard<Mutex>& operator=(const LockGuard<Mutex>& other) V8_DELETE;
+ DISALLOW_COPY_AND_ASSIGN(LockGuard);
};
} } // namespace v8::internal
« no previous file with comments | « src/optimizing-compiler-thread.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine