2014-10-03 0:02 GMT+02:00 Thiago Arruda <[email protected]>: > Is it enough to simply call uv_loop_close to cleanup all operating-system > resources allocated by libuv? Eg, will it kill child processes, close > connections automatically?
Not at all. You must close all the handlers with uv_close() and then free() them. Same for UV loops. And must also free all the allocated uv_req_t. No magic here. This is C. -- Iñaki Baz Castillo <[email protected]> -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
