yev_loop_destroy()

yev_loop_destroy()#

yev_loop_destroy() releases all resources associated with the given event loop and terminates its execution.

Prototype

void yev_loop_destroy(
    yev_loop_h yev_loop
);

Parameters

Key

Type

Description

yev_loop

yev_loop_h

Handle to the event loop to be destroyed.


Return Value

This function does not return a value.

Notes

After calling yev_loop_destroy(), the yev_loop_h handle becomes invalid and should not be used.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples