Merged in rnouse/nuttx (pull request #7)

Eliminate `sigset' shadow warning
This commit is contained in:
Gregory Nutt 2015-07-31 13:22:32 -06:00
commit 02e90b8c2f
1 changed files with 4 additions and 4 deletions

View File

@ -268,16 +268,16 @@ int schedule_unload(pid_t pid, FAR struct binary_s *bin)
{ {
struct sigaction act; struct sigaction act;
struct sigaction oact; struct sigaction oact;
sigset_t sigset; sigset_t set;
irqstate_t flags; irqstate_t flags;
int errorcode; int errorcode;
int ret; int ret;
/* Make sure that SIGCHLD is unmasked */ /* Make sure that SIGCHLD is unmasked */
(void)sigemptyset(&sigset); (void)sigemptyset(&set);
(void)sigaddset(&sigset, SIGCHLD); (void)sigaddset(&set, SIGCHLD);
ret = sigprocmask(SIG_UNBLOCK, &sigset, NULL); ret = sigprocmask(SIG_UNBLOCK, &set, NULL);
if (ret != OK) if (ret != OK)
{ {
/* The errno value will get trashed by the following debug output */ /* The errno value will get trashed by the following debug output */