pub unsafe extern "C" fn aws_event_loop_stop(
    event_loop: *mut aws_event_loop
) -> c_int
Expand description

Triggers the event loop to stop, but does not wait for the loop to stop completely. This function may be called from outside or inside the event loop thread. It is safe to call multiple times. This function is called from destroy().

If you do not call destroy(), an event loop can be run again by calling stop(), wait_for_stop_completion(), run().