From 3159ab8d88155465d4df9ef658cf7d250868b50d Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Wed, 26 Aug 2020 14:52:42 -0400 Subject: [PATCH] chore: Replace assert with runtime panic --- runtime/src/runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/runtime.c b/runtime/src/runtime.c index d00c25a..e95c2d3 100644 --- a/runtime/src/runtime.c +++ b/runtime/src/runtime.c @@ -175,7 +175,7 @@ listener_thread_main(void *dummy) == 0) { panic("epoll_wait: %s\n", strerror(error)); } - assert(0); + panic("epoll_wait"); }; /* Assumption: We have only registered EPOLLIN events, so we should see no others here */