improved the readability of the queue code a bit
diff --git a/aos/linux_code/ipc_lib/queue.h b/aos/linux_code/ipc_lib/queue.h
index e7737e1..e1baaef 100644
--- a/aos/linux_code/ipc_lib/queue.h
+++ b/aos/linux_code/ipc_lib/queue.h
@@ -156,6 +156,8 @@
void DoFreeMessage(const void *msg);
// Calls DoFreeMessage if appropriate.
void DecrementMessageReferenceCount(const void *msg);
+ // Only does the actual incrementing of the reference count.
+ void IncrementMessageReferenceCount(const void *msg) const;
// Must be called with data_lock_ locked.
// *read_data will be initialized.