Mostly cosmetic changes

This commit is contained in:
Gregory Nutt 2014-09-04 10:28:38 -06:00
parent 166d46a819
commit 47d55c28dc
4 changed files with 7 additions and 5 deletions

View File

@ -75,7 +75,7 @@
* This function is called by the OS when one or more
* signal handling actions have been queued for execution.
* The architecture specific code must configure things so
* that the 'igdeliver' callback is executed on the thread
* that the 'sigdeliver' callback is executed on the thread
* specified by 'tcb' as soon as possible.
*
* This function may be called from interrupt handling logic.

View File

@ -427,6 +427,7 @@ static ssize_t uart_write(FAR struct file *filep, FAR const char *buffer,
ret = uart_putxmitchar(dev, '\r', oktoblock);
if (ret < 0)
{
nwritten = ret;
break;
}
}

View File

@ -54,8 +54,9 @@
static void rawoutstream_putc(FAR struct lib_outstream_s *this, int ch)
{
FAR struct lib_rawoutstream_s *rthis = (FAR struct lib_rawoutstream_s *)this;
int nwritten;
char buffer = ch;
int nwritten;
int errcode;
DEBUGASSERT(this && rthis->fd >= 0);
@ -77,9 +78,10 @@ static void rawoutstream_putc(FAR struct lib_outstream_s *this, int ch)
* return values from write().
*/
errcode = get_errno();
DEBUGASSERT(nwritten < 0);
}
while (get_errno() == EINTR);
while (errcode == EINTR);
}
/****************************************************************************

View File

@ -51,7 +51,7 @@
#include "signal/signal.h"
/****************************************************************************
* Definitions
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
@ -184,4 +184,3 @@ void sig_deliver(FAR struct tcb_s *stcb)
stcb->pterrno = saved_errno;
sched_unlock();
}