void osenv_irq_disable(int irq);
Component OS, Nonblocking
Prevents a specific interrupt line from delivering an interrupt. Can be done in software or by disabling at the interrupt controller.If the interrupt does occur while disabled, it should be delivered as soon as osenv_irq_enable is called (see that section for details).
- irq
- The physical interrupt line.