Merge "sigsetmask.c was not processing the "mask" argument."

This commit is contained in:
Jean-Baptiste Queru 2010-12-06 10:42:08 -08:00 committed by Android Code Review
commit bcb0a925b0

View File

@ -38,6 +38,8 @@ sigsetmask(int mask)
sigset_t the_sigset;
} in, out;
in.the_mask = mask;
n = sigprocmask(SIG_SETMASK, &in.the_sigset, &out.the_sigset);
if (n)
return n;