From a8afc280b2f599ccb577e959530bb92e58db8d42 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 14 Feb 2016 16:20:21 -0600 Subject: [PATCH] Rename irqsave() and irqrestore() to up_irq_save() and up_irq_restore() --- Documentation/NuttxPortingGuide.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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).