diff options
author | David 'Digit' Turner <digit@google.com> | 2010-03-01 11:30:40 -0800 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-03-01 11:30:40 -0800 |
commit | 8f8b5310d2c3fe8782377bd66b65ed14dc6511a4 (patch) | |
tree | 1cd0c6e85535467a0ffd973991aef7bccb499473 /libc/docs | |
parent | 1f6f49396335d88c577c16304b1989d0d1468e5c (diff) | |
download | bionic-8f8b5310d2c3fe8782377bd66b65ed14dc6511a4.zip bionic-8f8b5310d2c3fe8782377bd66b65ed14dc6511a4.tar.gz bionic-8f8b5310d2c3fe8782377bd66b65ed14dc6511a4.tar.bz2 |
Fix pthread_sigmask() to return correct error values.
Before that, it returned -1 on error and set errno (not Posix)
After the patch, it returns the error code and leaves errno untouched.
Diffstat (limited to 'libc/docs')
-rw-r--r-- | libc/docs/CHANGES.TXT | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/docs/CHANGES.TXT b/libc/docs/CHANGES.TXT index e818df3..47289f6 100644 --- a/libc/docs/CHANGES.TXT +++ b/libc/docs/CHANGES.TXT @@ -64,6 +64,10 @@ Differences between current and Android 2.1: in /etc/resolv.conf. (resolv.conf is already ignored, so the latter is a no-op for actual functionality.) +- fix pthread_sigmask() to properly return an error code without touching + errno. Previous implementation returned -1 on error, setting errno, which + is not Posix compliant. + ------------------------------------------------------------------------------- Differences between Android 2.1 and 2.0.1: |