Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
void OSIntExit (void);

File

Called from

Code enabled by

os_core.c

ISR only

N/A

OSIntExit() notifies µC/OS-III that an ISR is complete. This allows µC/OS-III to keep track of interrupt nesting. OSIntExit() is used in conjunction with OSIntEnter(). When the last nested interrupt completes, OSIntExit() determines if a higher priority task is ready-to-run. If so, the interrupt returns to the higher priority task instead of the interrupted task.

...