Update some comments.

This commit is contained in:
Gregory Nutt 2018-06-06 17:20:01 -06:00
parent a581d7c2e3
commit b5c6d9c849
3 changed files with 9 additions and 9 deletions

View File

@ -116,9 +116,9 @@ void up_sigdeliver(void)
* run with interrupts enabled. * run with interrupts enabled.
* *
* REVISIT: 'irqcount' could still be greater than zero in the SMP case. * REVISIT: 'irqcount' could still be greater than zero in the SMP case.
* This would be an issue if the signal handler were to suspend because * This is an issue because (1) global spinlocks are still held and (2) if
* the critical section would be re-established when the signal handler * the signal handler were to suspend the the critical section would be
* resumes. * re-established when the signal handler resumes.
*/ */
up_irq_enable(); up_irq_enable();

View File

@ -129,9 +129,9 @@ void up_sigdeliver(void)
* run with interrupts enabled. * run with interrupts enabled.
* *
* REVISIT: 'irqcount' could still be greater than zero in the SMP case. * REVISIT: 'irqcount' could still be greater than zero in the SMP case.
* This would be an issue if the signal handler were to suspend because * This is an issue because (1) global spinlocks are still held and (2) if
* the critical section would be re-established when the signal handler * the signal handler were to suspend the the critical section would be
* resumes. * re-established when the signal handler resumes.
*/ */
up_irq_enable(); up_irq_enable();

View File

@ -115,9 +115,9 @@ void xtensa_sig_deliver(void)
* run with interrupts enabled. * run with interrupts enabled.
* *
* REVISIT: 'irqcount' could still be greater than zero in the SMP case. * REVISIT: 'irqcount' could still be greater than zero in the SMP case.
* This would be an issue if the signal handler were to suspend because * This is an issue because (1) global spinlocks are still held and (2) if
* the critical section would be re-established when the signal handler * the signal handler were to suspend the the critical section would be
* resumes. * re-established when the signal handler resumes.
*/ */
up_irq_enable(); up_irq_enable();