mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-27 09:32:28 +08:00
[Kernel] message 可以返回消息的实际大小 (#7709)
This commit is contained in:
@@ -575,7 +575,7 @@ static void serial_thread_entry(void *parameter)
|
||||
rt_memset(&msg, 0, sizeof(msg));
|
||||
/* Read messages from the message queue*/
|
||||
result = rt_mq_recv(&rx_mq, &msg, sizeof(msg), RT_WAITING_FOREVER);
|
||||
if (result == RT_EOK)
|
||||
if (result >= 0)
|
||||
{
|
||||
/*Read data from the serial port*/
|
||||
rx_length = rt_device_read(msg.dev, 0, rx_buffer, msg.size);
|
||||
|
||||
@@ -595,7 +595,7 @@ static void thread1_entry(void *parameter)
|
||||
while (1)
|
||||
{
|
||||
/* Receive messages from the message queue */
|
||||
if (rt_mq_recv(&mq, &buf, sizeof(buf), RT_WAITING_FOREVER) == RT_EOK)
|
||||
if (rt_mq_recv(&mq, &buf, sizeof(buf), RT_WAITING_FOREVER) >= 0)
|
||||
{
|
||||
rt_kprintf("thread1: recv msg from msg queue, the content:%c\n", buf);
|
||||
if (cnt == 19)
|
||||
@@ -784,7 +784,7 @@ void message_handler()
|
||||
struct msg msg_ptr; /* Local variable used to place the message */
|
||||
|
||||
/* Receive messages from the message queue into msg_ptr */
|
||||
if (rt_mq_recv(mq, (void*)&msg_ptr, sizeof(struct msg)) == RT_EOK)
|
||||
if (rt_mq_recv(mq, (void*)&msg_ptr, sizeof(struct msg)) >= 0)
|
||||
{
|
||||
/* Successfully received the message, corresponding data processing is performed */
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user