am b11d7c3e: am bcb0a925: Merge "sigsetmask.c was not processing the "mask" argument."

* commit 'b11d7c3eca0e5bc04c14afe82a530429f173706c':
  sigsetmask.c was not processing the "mask" argument.
This commit is contained in:
Jean-Baptiste Queru 2010-12-06 16:44:30 -08:00 committed by Android Git Automerger
commit 5d7995be24

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;