Skip to content

Commit e6cb36c

Browse files
Merge pull request #80 from oven-sh/ben/runloop-wakeup-no-assert
Do nothing instead of asserting `RunLoop::wakeUp` is never reached
2 parents fca5c31 + 1484d40 commit e6cb36c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/WTF/wtf/bun/RunLoopBun.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ void RunLoop::stop()
9292

9393
void RunLoop::wakeUp()
9494
{
95-
ASSERT_NOT_REACHED();
95+
// Do nothing. This means that JSRunLoopTimer::Manager::PerVMData's RunLoop::Timer leaks instead
96+
// of being freed.
9697
}
9798

9899
RunLoop::CycleResult RunLoop::cycle(RunLoopMode mode)

0 commit comments

Comments
 (0)