Add additional event.type CHECK.

GitOrigin-RevId: c5524a811b96a3b06585607ca041455e786bedcc
This commit is contained in:
levlam 2018-12-14 20:00:19 +03:00
parent 9d3ab75c56
commit 39c7df8000
1 changed files with 2 additions and 0 deletions

View File

@ -297,6 +297,8 @@ void Scheduler::do_event(ActorInfo *actor_info, Event &&event) {
UNREACHABLE();
break;
}
default:
UNREACHABLE();
}
// can't clear event here. It may be already destroyed during destory_actor
}