Sortix 1.1dev ports manual
This manual documents Sortix 1.1dev ports. You can instead view this document in the latest official manual.
curl_global_cleanup(3) | libcurl Manual | curl_global_cleanup(3) |
NAME
curl_global_cleanup - global libcurl cleanupSYNOPSIS
#include <curl/curl.h>DESCRIPTION
This function releases resources acquired by curl_global_init(3).CAUTION
curl_global_cleanup(3) does not block waiting for any libcurl-created threads to terminate (such as threads used for name resolving). If a module containing libcurl is dynamically unloaded while libcurl-created threads are still running then your program may crash or other corruption may occur. We recommend you do not run libcurl from any module that may be unloaded dynamically. This behavior may be addressed in the future.SEE ALSO
curl_global_init(3), libcurl(3), libcurl-thread(3),September 20, 2016 | libcurl 7.69.0 |