remove EINA_ERROR_TIMEOUT

As pointed out in the mailing list, it was introduced in this release,
so it's better to remove the symbol instead of deprecating it.

People should use ETIMEDOUT directly.
This commit is contained in:
Gustavo Sverzut Barbieri 2016-08-23 10:12:47 -03:00
parent 1c78d2196b
commit 12850d4e25
2 changed files with 0 additions and 10 deletions

View File

@ -126,8 +126,6 @@ _eina_error_msg_alloc(void)
EAPI Eina_Error EINA_ERROR_OUT_OF_MEMORY = ENOMEM;
EWAPI Eina_Error EINA_ERROR_TIMEOUT = ETIMEDOUT;
/**
* @endcond
*/

View File

@ -97,14 +97,6 @@ typedef enum
*/
typedef void (*Eina_TLS_Delete_Cb)(void *ptr);
/**
* @brief Error set when a blocking function timed out.
* @since 1.19
*
* @deprecated Use ETIMEDOUT instead.
*/
EWAPI extern Eina_Error EINA_ERROR_TIMEOUT EINA_DEPRECATED; /* use ETIMEDOUT */
# include "eina_inline_lock_posix.x"
/**