]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - android-sdk/platform-bionic.git/blob - ABI-bugs.txt
merge in master-release history after reset to master
[android-sdk/platform-bionic.git] / ABI-bugs.txt
1 KNOWN ABI BUGS
2 --------------
4   time_t is 32-bit. http://b/5819737
6   off_t is 32-bit. There is off64_t, but no _FILE_OFFSET_BITS support.
8   sigset_t is too small on ARM and x86 (but correct on MIPS), so support
9   for real-time signals is broken. http://b/5828899
11   Too few TLS slots mean we can't allocate 128 pthread_key_t instances,
12   which POSIX says should be the minimum.
14   atexit(3) handlers registered by a shared library aren't called on
15   dlclose(3); this only affects ARM. http://b/4998315