sched/signal/sig_timedwait.c: Fix typo in comment

sched/signal/sig_timedwait.c:

    * nxsig_timedwait(): Fix typo in comment:
      "is store din" -> "is stored in"

include/nuttx/signal.h:

    * Fix same typo in extern declaration of nxsig_timedwait().
This commit is contained in:
Nathan Hartman 2020-11-22 16:47:10 -05:00 committed by Xiang Xiao
parent 3c11825cda
commit 8e8ead3224
2 changed files with 2 additions and 2 deletions

View File

@ -366,7 +366,7 @@ int nxsig_kill(pid_t pid, int signo);
* is forever.
*
* If the info argument is non-NULL, the selected signal number is stored
* in the si_signo member and the cause of the signal is store din the
* in the si_signo member and the cause of the signal is stored in the
* si_code member. The content of si_value is only meaningful if the
* signal was generated by sigqueue().
*

View File

@ -195,7 +195,7 @@ void nxsig_wait_irq(FAR struct tcb_s *wtcb, int errcode)
* is forever.
*
* If the info argument is non-NULL, the selected signal number is stored
* in the si_signo member and the cause of the signal is store din the
* in the si_signo member and the cause of the signal is stored in the
* si_code member. The content of si_value is only meaningful if the
* signal was generated by sigqueue() (or nxsig_queue).
*