mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
nsh: return EOF when nread is 0
If enable CONFIG NSH_CLE. When sh reads data and detects that nread is 0, return EOF and exit. Signed-off-by: yangsong8 <yangsong8@xiaomi.com>
This commit is contained in:
parent
2bc4bdadee
commit
f82e6c2229
2 changed files with 8 additions and 7 deletions
|
|
@ -211,11 +211,12 @@ int nsh_session(FAR struct console_stdio_s *pstate,
|
|||
|
||||
ret = cle_fd(pstate->cn_line, nsh_prompt(), LINE_MAX,
|
||||
INFD(pstate), OUTFD(pstate));
|
||||
if (ret < 0)
|
||||
if (ret == EOF)
|
||||
{
|
||||
dprintf(ERRFD(pstate), g_fmtcmdfailed, "nsh_session",
|
||||
"cle", NSH_ERRNO_OF(-ret));
|
||||
continue;
|
||||
ret = EXIT_SUCCESS;
|
||||
break;
|
||||
}
|
||||
#else
|
||||
/* Display the prompt string */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue