More fixes to issues noted by cppcheck
This commit is contained in:
parent
b5c4fbf7b6
commit
045c01c7b3
@ -305,7 +305,7 @@ void AsyncEventPrint(void)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
printf("AsyncCallback called with unhandled event! (0x%lx)\n", \
|
printf("AsyncCallback called with unhandled event! (0x%lx)\n",
|
||||||
(unsigned long)lastAsyncEvent);
|
(unsigned long)lastAsyncEvent);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -403,7 +403,7 @@ void mqueue_test(void)
|
|||||||
pthread_join(receiver, &result);
|
pthread_join(receiver, &result);
|
||||||
if (result != expected)
|
if (result != expected)
|
||||||
{
|
{
|
||||||
printf("mqueue_test: ERROR receiver thread should have exited with %d\n",
|
printf("mqueue_test: ERROR receiver thread should have exited with %p\n",
|
||||||
expected);
|
expected);
|
||||||
printf(" ERROR Instead exited with nerrors=%d\n",
|
printf(" ERROR Instead exited with nerrors=%d\n",
|
||||||
(int)result);
|
(int)result);
|
||||||
|
@ -137,6 +137,6 @@ void mutex_test(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
printf("\t\tThread1\tThread2\n");
|
printf("\t\tThread1\tThread2\n");
|
||||||
printf("\tLoops\t%ld\t%ld\n", nloops[0], nloops[1]);
|
printf("\tLoops\t%lu\t%lu\n", nloops[0], nloops[1]);
|
||||||
printf("\tErrors\t%ld\t%ld\n", nerrors[0], nerrors[1]);
|
printf("\tErrors\t%lu\t%lu\n", nerrors[0], nerrors[1]);
|
||||||
}
|
}
|
||||||
|
@ -204,7 +204,7 @@ static int waiter_main(int argc, char *argv[])
|
|||||||
/* Detach the signal handler */
|
/* Detach the signal handler */
|
||||||
|
|
||||||
act.sa_sigaction = SIG_DFL;
|
act.sa_sigaction = SIG_DFL;
|
||||||
status = sigaction(WAKEUP_SIGNAL, &act, &oact);
|
(void)sigaction(WAKEUP_SIGNAL, &act, &oact);
|
||||||
|
|
||||||
printf("waiter_main: done\n" );
|
printf("waiter_main: done\n" );
|
||||||
FFLUSH();
|
FFLUSH();
|
||||||
@ -223,7 +223,6 @@ void sighand_test(void)
|
|||||||
struct sched_param param;
|
struct sched_param param;
|
||||||
union sigval sigvalue;
|
union sigval sigvalue;
|
||||||
pid_t waiterpid;
|
pid_t waiterpid;
|
||||||
int policy;
|
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
printf("sighand_test: Initializing semaphore to 0\n" );
|
printf("sighand_test: Initializing semaphore to 0\n" );
|
||||||
@ -265,13 +264,6 @@ void sighand_test(void)
|
|||||||
param.sched_priority = PTHREAD_DEFAULT_PRIORITY;
|
param.sched_priority = PTHREAD_DEFAULT_PRIORITY;
|
||||||
}
|
}
|
||||||
|
|
||||||
policy = sched_getscheduler(0);
|
|
||||||
if (policy == ERROR)
|
|
||||||
{
|
|
||||||
printf("sighand_test: ERROR sched_getscheduler() failed\n" );
|
|
||||||
policy = SCHED_FIFO;
|
|
||||||
}
|
|
||||||
|
|
||||||
waiterpid = task_create("waiter", param.sched_priority,
|
waiterpid = task_create("waiter", param.sched_priority,
|
||||||
PTHREAD_STACK_DEFAULT, waiter_main, NULL);
|
PTHREAD_STACK_DEFAULT, waiter_main, NULL);
|
||||||
if (waiterpid == ERROR)
|
if (waiterpid == ERROR)
|
||||||
@ -326,7 +318,7 @@ void sighand_test(void)
|
|||||||
|
|
||||||
#ifdef CONFIG_SCHED_HAVE_PARENT
|
#ifdef CONFIG_SCHED_HAVE_PARENT
|
||||||
act.sa_sigaction = SIG_DFL;
|
act.sa_sigaction = SIG_DFL;
|
||||||
status = sigaction(SIGCHLD, &act, &oact);
|
(void)sigaction(SIGCHLD, &act, &oact);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
printf("sighand_test: done\n" );
|
printf("sighand_test: done\n" );
|
||||||
|
@ -124,7 +124,7 @@ static void *sender_thread(void *arg)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
g_send_mqfd = mq_open("timedmq", O_WRONLY|O_CREAT, 0666, &attr);
|
g_send_mqfd = mq_open("timedmq", O_WRONLY|O_CREAT, 0666, &attr);
|
||||||
if (g_send_mqfd < 0)
|
if (g_send_mqfd == (mqd_t)-1)
|
||||||
{
|
{
|
||||||
printf("sender_thread: ERROR mq_open failed\n");
|
printf("sender_thread: ERROR mq_open failed\n");
|
||||||
pthread_exit((pthread_addr_t)1);
|
pthread_exit((pthread_addr_t)1);
|
||||||
@ -221,7 +221,7 @@ static void *receiver_thread(void *arg)
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
g_recv_mqfd = mq_open("timedmq", O_RDONLY|O_CREAT, 0666, &attr);
|
g_recv_mqfd = mq_open("timedmq", O_RDONLY|O_CREAT, 0666, &attr);
|
||||||
if (g_recv_mqfd < 0)
|
if (g_recv_mqfd == (mqd_t)-1)
|
||||||
{
|
{
|
||||||
printf("receiver_thread: ERROR mq_open failed\n");
|
printf("receiver_thread: ERROR mq_open failed\n");
|
||||||
pthread_exit((pthread_addr_t)1);
|
pthread_exit((pthread_addr_t)1);
|
||||||
|
@ -81,7 +81,6 @@ int main(int argc, FAR char *argv[])
|
|||||||
int pashello_main(int argc, FAR char *argv[])
|
int pashello_main(int argc, FAR char *argv[])
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
FAR struct pexec_s *st;
|
|
||||||
int exitcode = EXIT_SUCCESS;
|
int exitcode = EXIT_SUCCESS;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -172,8 +172,8 @@ int interlock_test(void)
|
|||||||
}
|
}
|
||||||
else if (ret != 0)
|
else if (ret != 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "interlock_test: Read %d bytes of data -- aborting: %d\n",
|
fprintf(stderr, "interlock_test: Read %ld bytes of data -- aborting: %d\n",
|
||||||
nbytes, errno);
|
(long)nbytes, errno);
|
||||||
ret = 5;
|
ret = 5;
|
||||||
goto errout_with_file;
|
goto errout_with_file;
|
||||||
}
|
}
|
||||||
|
@ -124,14 +124,14 @@ static void pwm_help(FAR struct pwm_state_s *pwm)
|
|||||||
"Default: %s Current: %s\n",
|
"Default: %s Current: %s\n",
|
||||||
CONFIG_EXAMPLES_PWM_DEVPATH, pwm->devpath ? pwm->devpath : "NONE");
|
CONFIG_EXAMPLES_PWM_DEVPATH, pwm->devpath ? pwm->devpath : "NONE");
|
||||||
printf(" [-f frequency] selects the pulse frequency. "
|
printf(" [-f frequency] selects the pulse frequency. "
|
||||||
"Default: %d Hz Current: %d Hz\n",
|
"Default: %d Hz Current: %u Hz\n",
|
||||||
CONFIG_EXAMPLES_PWM_FREQUENCY, pwm->freq);
|
CONFIG_EXAMPLES_PWM_FREQUENCY, pwm->freq);
|
||||||
printf(" [-d duty] selects the pulse duty as a percentage. "
|
printf(" [-d duty] selects the pulse duty as a percentage. "
|
||||||
"Default: %d %% Current: %d %%\n",
|
"Default: %d %% Current: %d %%\n",
|
||||||
CONFIG_EXAMPLES_PWM_DUTYPCT, pwm->duty);
|
CONFIG_EXAMPLES_PWM_DUTYPCT, pwm->duty);
|
||||||
#ifdef CONFIG_PWM_PULSECOUNT
|
#ifdef CONFIG_PWM_PULSECOUNT
|
||||||
printf(" [-n count] selects the pulse count. "
|
printf(" [-n count] selects the pulse count. "
|
||||||
"Default: %d Current: %d\n",
|
"Default: %d Current: %u\n",
|
||||||
CONFIG_EXAMPLES_PWM_PULSECOUNT, pwm->count);
|
CONFIG_EXAMPLES_PWM_PULSECOUNT, pwm->count);
|
||||||
#endif
|
#endif
|
||||||
printf(" [-t duration] is the duration of the pulse train in seconds. "
|
printf(" [-t duration] is the duration of the pulse train in seconds. "
|
||||||
@ -336,11 +336,11 @@ int pwm_main(int argc, char *argv[])
|
|||||||
#ifdef CONFIG_PWM_PULSECOUNT
|
#ifdef CONFIG_PWM_PULSECOUNT
|
||||||
info.count = g_pwmstate.count;
|
info.count = g_pwmstate.count;
|
||||||
|
|
||||||
printf("pwm_main: starting output with frequency: %d duty: %08x count: %d\n",
|
printf("pwm_main: starting output with frequency: %u duty: %08x count: %u\n",
|
||||||
info.frequency, info.duty, info.count);
|
info.frequency, info.duty, info.count);
|
||||||
|
|
||||||
#else
|
#else
|
||||||
printf("pwm_main: starting output with frequency: %d duty: %08x\n",
|
printf("pwm_main: starting output with frequency: %u duty: %08x\n",
|
||||||
info.frequency, info.duty);
|
info.frequency, info.duty);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -315,7 +315,7 @@ int qe_main(int argc, char *argv[])
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(CONFIG_NSH_BUILTIN_APPS)
|
#if defined(CONFIG_NSH_BUILTIN_APPS)
|
||||||
printf("qe_main: Number of samples: %d\n", g_qeexample.nloops);
|
printf("qe_main: Number of samples: %u\n", g_qeexample.nloops);
|
||||||
for (nloops = 0; nloops < g_qeexample.nloops; nloops++)
|
for (nloops = 0; nloops < g_qeexample.nloops; nloops++)
|
||||||
#elif defined(CONFIG_EXAMPLES_QENCODER_NSAMPLES)
|
#elif defined(CONFIG_EXAMPLES_QENCODER_NSAMPLES)
|
||||||
printf("qe_main: Number of samples: %d\n", CONFIG_EXAMPLES_QENCODER_NSAMPLES);
|
printf("qe_main: Number of samples: %d\n", CONFIG_EXAMPLES_QENCODER_NSAMPLES);
|
||||||
|
@ -98,7 +98,6 @@ int relays_main(int argc, char *argv[])
|
|||||||
uint32_t r_stat;
|
uint32_t r_stat;
|
||||||
int option;
|
int option;
|
||||||
int n = -1;
|
int n = -1;
|
||||||
int ret = -1;
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
while ((option = getopt(argc, argv, ":n:")) != ERROR)
|
while ((option = getopt(argc, argv, ":n:")) != ERROR)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user