diff options
author | David 'Digit' Turner <digit@google.com> | 2010-06-02 18:12:12 -0700 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2010-06-08 17:04:49 -0700 |
commit | 6304d8b21891fd0cb7b5a4c25159a3d3b1709d62 (patch) | |
tree | 8ab9c2bf6022f139b7af2eabda11846abf684171 /libc/docs/CHANGES.TXT | |
parent | a8a21488630980c1d2a2152d0ac39bd7978879e2 (diff) | |
download | bionic-6304d8b21891fd0cb7b5a4c25159a3d3b1709d62.zip bionic-6304d8b21891fd0cb7b5a4c25159a3d3b1709d62.tar.gz bionic-6304d8b21891fd0cb7b5a4c25159a3d3b1709d62.tar.bz2 |
Use private futexes for semaphores, unless they are initialized with pshared != 0.
Change-Id: I534e36a7171cd37037ae03b910ba71ea6968286d
Note: previously, sem_init() would return an error if pshared != 0.
Diffstat (limited to 'libc/docs/CHANGES.TXT')
-rw-r--r-- | libc/docs/CHANGES.TXT | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/docs/CHANGES.TXT b/libc/docs/CHANGES.TXT index a66e737..ce43f1e 100644 --- a/libc/docs/CHANGES.TXT +++ b/libc/docs/CHANGES.TXT @@ -5,6 +5,9 @@ Differences between current and Android 2.2: - <pthread.h>: Add reader/writer locks implementation. +- <semaphore.h>: Use private futexes for semaphore implementation, + unless your set 'pshared' to non-0 when calling sem_init(). + ------------------------------------------------------------------------------- Differences between Android 2.2. and Android 2.1: |