Commit c6705f5e authored by jochen@chromium.org's avatar jochen@chromium.org

Deprecate v8::Locker::{Start,Stop}Preemption

BUG=v8:3004
R=svenpanne@chromium.org

Review URL: https://codereview.chromium.org/63173022

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17736 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent fe70e2d6
...@@ -5246,19 +5246,11 @@ class V8_EXPORT Locker { ...@@ -5246,19 +5246,11 @@ class V8_EXPORT Locker {
~Locker(); ~Locker();
/** V8_DEPRECATED("This will be remvoed.",
* Start preemption. static void StartPreemption(Isolate *isolate, int every_n_ms));
*
* When preemption is started, a timer is fired every n milliseconds
* that will switch between multiple threads that are in contention
* for the V8 lock.
*/
static void StartPreemption(Isolate* isolate, int every_n_ms);
/** V8_DEPRECATED("This will be removed",
* Stop preemption. static void StopPreemption(Isolate* isolate));
*/
static void StopPreemption(Isolate* isolate);
/** /**
* Returns whether or not the locker for a given isolate, is locked by the * Returns whether or not the locker for a given isolate, is locked by the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment