Fixed coding std issues

This commit is contained in:
Subhra Sankha Sarkar 2020-10-29 14:47:32 +05:30 committed by Xiang Xiao
parent bd0ad68da8
commit 36b1be0609
5 changed files with 39 additions and 32 deletions

@ -108,8 +108,8 @@ int nsh_builtin(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd,
{ {
/* The application was successfully started with pre-emption disabled. /* The application was successfully started with pre-emption disabled.
* In the simplest cases, the application will not have run because the * In the simplest cases, the application will not have run because the
* the scheduler is locked. But in the case where I/O was redirected, a * the scheduler is locked. But in the case where I/O was redirected,
* proxy task ran and broke our lock. As result, the application may * a proxy task ran and broke our lock. As result, the application may
* have aso ran if its priority was higher than than the priority of * have aso ran if its priority was higher than than the priority of
* this thread. * this thread.
* *
@ -149,10 +149,10 @@ int nsh_builtin(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd,
* and if the application has not yet run, it will now be able to * and if the application has not yet run, it will now be able to
* do so. * do so.
* *
* Also, if CONFIG_SCHED_HAVE_PARENT is defined waitpid() might fail * Also, if CONFIG_SCHED_HAVE_PARENT is defined waitpid() might
* even if task is still active: If the I/O was re-directed by a * fail even if task is still active: If the I/O was re-directed
* proxy task, then the ask is a child of the proxy, and not this * by a proxy task, then the ask is a child of the proxy, and not
* task. waitpid() fails with ECHILD in either case. * this task. waitpid() fails with ECHILD in either case.
* *
* NOTE: WUNTRACED does nothing in the default case, but in the * NOTE: WUNTRACED does nothing in the default case, but in the
* case the where CONFIG_SIG_SIGSTOP_ACTION=y, the built-in app * case the where CONFIG_SIG_SIGSTOP_ACTION=y, the built-in app
@ -164,12 +164,13 @@ int nsh_builtin(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd,
if (ret < 0) if (ret < 0)
{ {
/* If the child thread does not exist, waitpid() will return /* If the child thread does not exist, waitpid() will return
* the error ECHLD. Since we know that the task was successfully * the error ECHLD. Since we know that the task was
* started, this must be one of the cases described above; we * successfully started, this must be one of the cases
* have to assume that the task already exit'ed. In this case, * described above; we have to assume that the task already
* we have no idea if the application ran successfully or not * exit'ed. In this case, we have no idea if the application
* (because NuttX does not retain exit status of child tasks). * ran successfully or not (because NuttX does not retain exit
* Let's assume that is did run successfully. * status of child tasks). Let's assume that is did run
* successfully.
*/ */
int errcode = errno; int errcode = errno;
@ -189,15 +190,15 @@ int nsh_builtin(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd,
else else
{ {
/* We can't return the exact status (nsh has nowhere to put it) /* We can't return the exact status (nsh has nowhere to put it)
* so just pass back zero/nonzero in a fashion that doesn't look * so just pass back zero/nonzero in a fashion that doesn't
* like an error. * look like an error.
*/ */
ret = (rc == 0) ? OK : 1; ret = (rc == 0) ? OK : 1;
/* TODO: Set the environment variable '?' to a string corresponding /* TODO: Set the environment variable '?' to a string
* to WEXITSTATUS(rc) so that $? will expand to the exit status of * corresponding to WEXITSTATUS(rc) so that $? will expand to
* the most recently executed task. * the exit status of the most recently executed task.
*/ */
} }
@ -212,13 +213,13 @@ int nsh_builtin(FAR struct nsh_vtbl_s *vtbl, FAR const char *cmd,
* *
* - CONFIG_SCHED_WAITPID is not selected meaning that all commands * - CONFIG_SCHED_WAITPID is not selected meaning that all commands
* have to be run in background, or * have to be run in background, or
* - CONFIG_SCHED_WAITPID and CONFIG_NSH_DISABLEBG are both selected, but the * - CONFIG_SCHED_WAITPID and CONFIG_NSH_DISABLEBG are both selected,
* user requested to run the command in background. * but the user requested to run the command in background.
* *
* NOTE that the case of a) CONFIG_SCHED_WAITPID is not selected and * NOTE that the case of a) CONFIG_SCHED_WAITPID is not selected and
* b) CONFIG_NSH_DISABLEBG selected cannot be supported. In that event, all * b) CONFIG_NSH_DISABLEBG selected cannot be supported. In that
* commands will have to run in background. The waitpid() API must be * event, all commands will have to run in background. The waitpid()
* available to support running the command in foreground. * API must be available to support running the command in foreground.
*/ */
#if !defined(CONFIG_SCHED_WAITPID) || !defined(CONFIG_NSH_DISABLEBG) #if !defined(CONFIG_SCHED_WAITPID) || !defined(CONFIG_NSH_DISABLEBG)

@ -121,7 +121,8 @@ static int dd_write(FAR struct dd_s *dd)
if (nbytes < 0) if (nbytes < 0)
{ {
FAR struct nsh_vtbl_s *vtbl = dd->vtbl; FAR struct nsh_vtbl_s *vtbl = dd->vtbl;
nsh_error(vtbl, g_fmtcmdfailed, g_dd, "write", NSH_ERRNO_OF(-nbytes)); nsh_error(vtbl, g_fmtcmdfailed, g_dd, "write",
NSH_ERRNO_OF(-nbytes));
return ERROR; return ERROR;
} }
@ -149,7 +150,8 @@ static int dd_read(FAR struct dd_s *dd)
if (nbytes < 0) if (nbytes < 0)
{ {
FAR struct nsh_vtbl_s *vtbl = dd->vtbl; FAR struct nsh_vtbl_s *vtbl = dd->vtbl;
nsh_error(vtbl, g_fmtcmdfailed, g_dd, "read", NSH_ERRNO_OF(-nbytes)); nsh_error(vtbl, g_fmtcmdfailed, g_dd, "read",
NSH_ERRNO_OF(-nbytes));
return ERROR; return ERROR;
} }

@ -62,6 +62,7 @@ int cmd_insmod(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
FAR void *handle; FAR void *handle;
/* Usage: insmod <filepath> <modulename> */ /* Usage: insmod <filepath> <modulename> */
/* Install the module */ /* Install the module */
handle = insmod(argv[1], argv[2]); handle = insmod(argv[1], argv[2]);
@ -84,6 +85,7 @@ int cmd_rmmod(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
int ret; int ret;
/* Usage: rmmod <modulename> */ /* Usage: rmmod <modulename> */
/* Get the module handle associated with the name */ /* Get the module handle associated with the name */
handle = modhandle(argv[1]); handle = modhandle(argv[1]);
@ -115,6 +117,7 @@ int cmd_lsmod(FAR struct nsh_vtbl_s *vtbl, int argc, char **argv)
FILE *stream; FILE *stream;
/* Usage: lsmod */ /* Usage: lsmod */
/* Open /proc/modules */ /* Open /proc/modules */
stream = fopen("/proc/modules", "r"); stream = fopen("/proc/modules", "r");

@ -273,7 +273,6 @@ static void nsh_parse_statusline(FAR char *line,
#ifndef CONFIG_NSH_DISABLE_PS #ifndef CONFIG_NSH_DISABLE_PS
static int ps_callback(FAR struct nsh_vtbl_s *vtbl, FAR const char *dirpath, static int ps_callback(FAR struct nsh_vtbl_s *vtbl, FAR const char *dirpath,
FAR struct dirent *entryp, FAR void *pvarg) FAR struct dirent *entryp, FAR void *pvarg)
{ {
struct nsh_taskstatus_s status; struct nsh_taskstatus_s status;
FAR char *filepath; FAR char *filepath;

@ -119,9 +119,11 @@ int nsh_romfsetc(void)
CONFIG_NSH_ROMFSMOUNTPT, MOUNT_DEVNAME); CONFIG_NSH_ROMFSMOUNTPT, MOUNT_DEVNAME);
#if defined(CONFIG_NSH_CROMFSETC) #if defined(CONFIG_NSH_CROMFSETC)
ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "cromfs", MS_RDONLY, NULL); ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "cromfs", MS_RDONLY,
NULL);
#else #else
ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "romfs", MS_RDONLY, NULL); ret = mount(MOUNT_DEVNAME, CONFIG_NSH_ROMFSMOUNTPT, "romfs", MS_RDONLY,
NULL);
#endif #endif
if (ret < 0) if (ret < 0)
{ {