Commit b9c81f51 authored by Wez's avatar Wez Committed by Commit Bot

Remove unused StackGuard::HandleGCInterrupt API.

Change-Id: I58f3eb9259822650a3b31010213e3df030821be2
Reviewed-on: https://chromium-review.googlesource.com/1042187Reviewed-by: 's avatarHannes Payer <hpayer@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#52980}
parent 91d9b4ee
...@@ -493,13 +493,6 @@ void StackGuard::InitThread(const ExecutionAccess& lock) { ...@@ -493,13 +493,6 @@ void StackGuard::InitThread(const ExecutionAccess& lock) {
// --- C a l l s t o n a t i v e s --- // --- C a l l s t o n a t i v e s ---
void StackGuard::HandleGCInterrupt() {
if (CheckAndClearInterrupt(GC_REQUEST)) {
isolate_->heap()->HandleGCRequest();
}
}
Object* StackGuard::HandleInterrupts() { Object* StackGuard::HandleInterrupts() {
if (FLAG_verify_predictable) { if (FLAG_verify_predictable) {
// Advance synthetic time by making a time request. // Advance synthetic time by making a time request.
......
...@@ -135,7 +135,6 @@ class V8_EXPORT_PRIVATE StackGuard final { ...@@ -135,7 +135,6 @@ class V8_EXPORT_PRIVATE StackGuard final {
// If the stack guard is triggered, but it is not an actual // If the stack guard is triggered, but it is not an actual
// stack overflow, then handle the interruption accordingly. // stack overflow, then handle the interruption accordingly.
Object* HandleInterrupts(); Object* HandleInterrupts();
void HandleGCInterrupt();
private: private:
StackGuard(); StackGuard();
......
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