| 113 | } |
| 114 | |
| 115 | static void mq_send_entry(void *param) |
| 116 | { |
| 117 | mq_send_case(&static_mq); |
| 118 | |
| 119 | #ifdef RT_USING_HEAP |
| 120 | if(dynamic_mq != RT_NULL) |
| 121 | { |
| 122 | mq_send_case(dynamic_mq); |
| 123 | } |
| 124 | #endif /* RT_USING_HEAP */ |
| 125 | |
| 126 | rt_event_send(&finish_e, MQSEND_FINISH); |
| 127 | } |
| 128 | |
| 129 | static void mq_recv_case(rt_mq_t testmq) |
| 130 | { |
nothing calls this directly
no test coverage detected