commit | b11d7c3eca0e5bc04c14afe82a530429f173706c | [log] [tgz] |
---|---|---|
author | Jean-Baptiste Queru <jbq@google.com> | Mon Dec 06 10:55:14 2010 -0800 |
committer | Android Git Automerger <android-git-automerger@android.com> | Mon Dec 06 10:55:14 2010 -0800 |
tree | 30e07f36716f906f028db24a2deac96f6ed9c5b4 | |
parent | 24dc936346b4a31005ac28c4bd464320cca9320a [diff] | |
parent | bcb0a925b0d6d545bbd9a4ebd9ac61bdacbfa2fe [diff] |
am bcb0a925: Merge "sigsetmask.c was not processing the "mask" argument." * commit 'bcb0a925b0d6d545bbd9a4ebd9ac61bdacbfa2fe': sigsetmask.c was not processing the "mask" argument.
diff --git a/libc/unistd/sigsetmask.c b/libc/unistd/sigsetmask.c index b987595..4f46458 100644 --- a/libc/unistd/sigsetmask.c +++ b/libc/unistd/sigsetmask.c
@@ -38,6 +38,8 @@ sigset_t the_sigset; } in, out; + in.the_mask = mask; + n = sigprocmask(SIG_SETMASK, &in.the_sigset, &out.the_sigset); if (n) return n;