LibHTTP API Reference

December 19, 2016 ยท View on GitHub

httplib_pthread_setspecific( key, value );

Parameters

ParameterTypeDescription
keypthread_key_tThe key of the variable to set
valueconst void *The value to be assigned to the key

Return Value

TypeDescription
intInteger value with the result of the function

Description

The platform independent function httplib_pthread_setspecific() is used to set a key value for a previously obtained thread specific key. The function returns 0 when successful and an error code if something went wrong. On systems which support it, the functionality is implemented as a direct call to pthread_setspecific(). Otherwise an OS dependent alternative function is called.

See Also