mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-09-21 18:57:16 +08:00
optimize code
This commit is contained in:
@@ -99,10 +99,7 @@ rt_err_t rt_data_queue_push(struct rt_data_queue *queue,
|
||||
RT_ASSERT(queue->magic == DATAQUEUE_MAGIC);
|
||||
|
||||
/* current context checking */
|
||||
if (timeout != 0)
|
||||
{
|
||||
RT_DEBUG_SCHEDULER_AVAILABLE;
|
||||
}
|
||||
RT_DEBUG_SCHEDULER_AVAILABLE(timeout != 0);
|
||||
|
||||
result = RT_EOK;
|
||||
thread = rt_thread_self();
|
||||
@@ -221,10 +218,7 @@ rt_err_t rt_data_queue_pop(struct rt_data_queue *queue,
|
||||
RT_ASSERT(size != RT_NULL);
|
||||
|
||||
/* current context checking */
|
||||
if (timeout != 0)
|
||||
{
|
||||
RT_DEBUG_SCHEDULER_AVAILABLE;
|
||||
}
|
||||
RT_DEBUG_SCHEDULER_AVAILABLE(timeout != 0);
|
||||
|
||||
result = RT_EOK;
|
||||
thread = rt_thread_self();
|
||||
|
||||
Reference in New Issue
Block a user