Break event_base_dispatch from another thread
问题 Can I call event_base_loopbreak to int event_base_dispatch(struct event_base *base) that run in another thread? 回答1: Calling event_base_loopbreak from outside of the event loop doesn't actually have an effect and inside the loop, event_base_loopbreak does not break from the loop. So, calling event_base_loopbreak to int event_base_dispatch(struct event_base *base) that run in another thread, should not have any effect. 回答2: I'm also meet the same issue, no matter calling event_base_loopbreak()