From 8c8bf357ba6da9cebd2ca5e5bbe620cbda235eb0 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 9 Apr 2015 17:21:25 +0900 Subject: [PATCH] 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 --- src/lib/eina/eina_thread_queue.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/eina/eina_thread_queue.h b/src/lib/eina/eina_thread_queue.h index 5c6a060b0f..f2199ad464 100644 --- a/src/lib/eina/eina_thread_queue.h +++ b/src/lib/eina/eina_thread_queue.h @@ -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 */