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

This reverts commit 9a9c1619b8124f07fc772c0b700e4d411cd78525.
This commit is contained in:
Yu Shan Emily Lau 2010-12-09 11:57:42 -08:00
parent 0a0c1edd80
commit abdffc4e23

View File

@ -38,8 +38,6 @@ 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;