arch/xtensa: Fix some typos and comments.

Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
This commit is contained in:
Abdelatif Guettouche 2022-05-02 11:56:20 +02:00 committed by Masayuki Ishikawa
parent a17bfec43d
commit 1cf2fa75c4
2 changed files with 3 additions and 3 deletions

View File

@ -87,12 +87,12 @@ void up_schedule_sigaction(struct tcb_s *tcb, sig_deliver_t sigdeliver)
if (!tcb->xcp.sigdeliver)
{
sinfo("rtcb=0x%p CURRENT_REGS=0x%p\n", this_task(), CURRENT_REGS);
/* First, handle some special cases when the signal is being delivered
* to the currently executing task.
*/
sinfo("rtcb=0x%p CURRENT_REGS=0x%p\n", this_task(), CURRENT_REGS);
if (tcb == this_task())
{
/* CASE 1: We are not in an interrupt handler and a task is

View File

@ -46,7 +46,7 @@
*
* Description:
* This is the a signal handling trampoline. When a signal action was
* posted. The task context was mucked with and forced to branch to this
* posted, the task context was mucked with and forced to branch to this
* location with interrupts disabled.
*
****************************************************************************/