eian threadqueue - be clearer on the message struct/format limitations

this makes the send func docs also be clear on the
Eina_Thread_Queue_Msg limitations like the wait func
This commit is contained in:
Carsten Haitzler 2015-04-09 17:21:25 +09:00
parent bea8877029
commit 8c8bf357ba
1 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,8 @@ eina_thread_queue_free(Eina_Thread_Queue *thq) EINA_ARG_NONNULL(1);
* This allocates space for a new message on the message queue, but does not
* actually trigger the send. For that you will need to call
* eina_thread_queue_send_done() to complete the send and trigger the other
* side.
* side. Every message must at least be a Eina_Thread_Queue_Msg in size and
* have this structure as the first member (first N bytes) of the message.
*
* @since 1.11
*/