diff --git a/include/rtdef.h b/include/rtdef.h index b5b31266870993091d343ad09bb1adb51d69b188..12bf565fbbbfba53bdad9cac0f9275f1b1631f90 100644 --- a/include/rtdef.h +++ b/include/rtdef.h @@ -504,7 +504,6 @@ typedef struct rt_event *rt_event_t; #ifdef RT_USING_MAILBOX /** * mailbox structure - * */ struct rt_mailbox { diff --git a/src/irq.c b/src/irq.c index e22f65d13ca7c6af74d2aa30bb8ec868d5c42085..ef13e8466c03f58a21d2190f4745400f49d76eac 100644 --- a/src/irq.c +++ b/src/irq.c @@ -37,7 +37,7 @@ void rt_interrupt_enter(void) { rt_base_t level; - RT_DEBUG_LOG(RT_DEBUG_IRQ, ("irq comming..., irq nest:%d\n", rt_interrupt_nest)); + RT_DEBUG_LOG(RT_DEBUG_IRQ, ("irq coming..., irq nest:%d\n", rt_interrupt_nest)); level = rt_hw_interrupt_disable(); rt_interrupt_nest ++; @@ -65,7 +65,7 @@ void rt_interrupt_leave(void) /** * This function will return the nest of interrupt. * - * User application can invoke this function to get whenther current + * User application can invoke this function to get whether current * context is interrupt context. * * @return the number of nested interrupts.