Remove unused StackGuard::HandleGCInterrupt API.

Change-Id: I58f3eb9259822650a3b31010213e3df030821be2
Reviewed-on: https://chromium-review.googlesource.com/1042187
Reviewed-by: Hannes Payer <hpayer@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#52980}
This commit is contained in:
Wez 2018-05-03 15:40:32 +02:00 committed by Commit Bot
parent 91d9b4eee9
commit b9c81f51d4
2 changed files with 0 additions and 8 deletions

View File

@ -493,13 +493,6 @@ void StackGuard::InitThread(const ExecutionAccess& lock) {
// --- 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() {
if (FLAG_verify_predictable) {
// Advance synthetic time by making a time request.

View File

@ -135,7 +135,6 @@ class V8_EXPORT_PRIVATE StackGuard final {
// If the stack guard is triggered, but it is not an actual
// stack overflow, then handle the interruption accordingly.
Object* HandleInterrupts();
void HandleGCInterrupt();
private:
StackGuard();