print out the name of the queue which ran out of messages

Change-Id: Ied3eadb2b78a7fa256515754af15f61d098f9a32
diff --git a/aos/linux_code/ipc_lib/queue.cc b/aos/linux_code/ipc_lib/queue.cc
index 9219192..81ad51b 100644
--- a/aos/linux_code/ipc_lib/queue.cc
+++ b/aos/linux_code/ipc_lib/queue.cc
@@ -169,7 +169,7 @@
   MessageHeader *header = __atomic_load_n(&free_messages_, __ATOMIC_RELAXED);
   do {
     if (__builtin_expect(header == nullptr, 0)) {
-      LOG(FATAL, "overused pool of queue %p\n", this);
+      LOG(FATAL, "overused pool of queue %p (%s)\n", this, name_);
     }
   } while (__builtin_expect(
       !__atomic_compare_exchange_n(&free_messages_, &header, header->next, true,
@@ -193,7 +193,8 @@
                 "need to revalidate size/alignent assumptions");
 
   if (queue_length < 1) {
-    LOG(FATAL, "queue length %d needs to be at least 1\n", queue_length);
+    LOG(FATAL, "queue length %d of %s needs to be at least 1\n", queue_length,
+        name_);
   }
 
   const size_t name_size = strlen(name) + 1;