diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 16ca041dba..32cad9675d 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -507,13 +507,13 @@ This structures represents the saved context of a thread.
  • - irqstate_t irqsave(void): + irqstate_t up_irq_save(void): Used to disable all interrupts. In the case of multi-CPU platforms, this function disables interrupts on CPUs.
  • - void irqrestore(irqstate_t flags): - Used to restore interrupt enables to the same state as before irqsave() was called. + void up_irq_restore(irqstate_t flags): + Used to restore interrupt enables to the same state as before up_irq_save() was called.
  • @@ -2195,7 +2195,7 @@ The system can be re-made subsequently by just typing make.

    This function implements enabling of the device specified by 'irq' at the interrupt controller level if supported by the architecture - (irqsave() supports the global level, the device level is hardware + (up_irq_save() supports the global level, the device level is hardware specific).

    If the architecture does not support up_disable_irq, @@ -2215,7 +2215,7 @@ The system can be re-made subsequently by just typing make.

    Description. This function implements disabling of the device specified by 'irq' at the interrupt controller level if supported by the architecture - (irqrestore() supports the global level, the device level is hardware + (up_irq_restore() supports the global level, the device level is hardware specific).