Remove an unused variable when calling sigwaitinfo()
This commit is contained in:
parent
a05acc1abb
commit
5382806c5a
@ -116,7 +116,6 @@ int oneshot_main(int argc, char *argv[])
|
|||||||
unsigned long usecs = CONFIG_EXAMPLE_ONESHOT_DELAY;
|
unsigned long usecs = CONFIG_EXAMPLE_ONESHOT_DELAY;
|
||||||
unsigned long secs;
|
unsigned long secs;
|
||||||
struct oneshot_start_s start;
|
struct oneshot_start_s start;
|
||||||
struct siginfo info;
|
|
||||||
struct timespec ts;
|
struct timespec ts;
|
||||||
uint64_t maxus;
|
uint64_t maxus;
|
||||||
sigset_t set;
|
sigset_t set;
|
||||||
@ -252,7 +251,7 @@ int oneshot_main(int argc, char *argv[])
|
|||||||
/* Wait for the oneshot to fire */
|
/* Wait for the oneshot to fire */
|
||||||
|
|
||||||
printf("Waiting...\n");
|
printf("Waiting...\n");
|
||||||
ret = sigwaitinfo(&set, &info);
|
ret = sigwaitinfo(&set, NULL);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "ERROR: sigwaitinfo failed: %d\n",
|
fprintf(stderr, "ERROR: sigwaitinfo failed: %d\n",
|
||||||
|
@ -146,14 +146,13 @@ static struct trv_joystick_s g_trv_joystick;
|
|||||||
static int trv_joystick_wait(void)
|
static int trv_joystick_wait(void)
|
||||||
{
|
{
|
||||||
sigset_t set;
|
sigset_t set;
|
||||||
struct siginfo value;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
/* Wait for a signal */
|
/* Wait for a signal */
|
||||||
|
|
||||||
(void)sigemptyset(&set);
|
(void)sigemptyset(&set);
|
||||||
(void)sigaddset(&set, CONFIG_GRAPHICS_TRAVELER_JOYSTICK_SIGNO);
|
(void)sigaddset(&set, CONFIG_GRAPHICS_TRAVELER_JOYSTICK_SIGNO);
|
||||||
ret = sigwaitinfo(&set, &value);
|
ret = sigwaitinfo(&set, NULL);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
int errcode = errno;
|
int errcode = errno;
|
||||||
|
Loading…
Reference in New Issue
Block a user