summaryrefslogtreecommitdiffstats
path: root/ABI-bugs.txt
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-03-07 11:48:58 -0800
committerElliott Hughes <enh@google.com>2013-03-07 11:51:10 -0800
commit0493a6f7be42e22d68e1d6ddb8eb2edaf818756f (patch)
tree3d0aacb40e3d21584c3d6617c44cdaccc3208040 /ABI-bugs.txt
parentc9f80814259a81dce12ba35d1750fa2b23fef48d (diff)
downloadbionic-0493a6f7be42e22d68e1d6ddb8eb2edaf818756f.zip
bionic-0493a6f7be42e22d68e1d6ddb8eb2edaf818756f.tar.gz
bionic-0493a6f7be42e22d68e1d6ddb8eb2edaf818756f.tar.bz2
Regenerate NOTICE files.
Also clean up some obsolete cruft. Change-Id: Iec3b36f6607f7a08b72de99294ed5b6cd910dd5f
Diffstat (limited to 'ABI-bugs.txt')
-rw-r--r--ABI-bugs.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/ABI-bugs.txt b/ABI-bugs.txt
new file mode 100644
index 0000000..83ee952
--- /dev/null
+++ b/ABI-bugs.txt
@@ -0,0 +1,15 @@
+KNOWN ABI BUGS
+--------------
+
+ time_t is 32-bit. http://b/5819737
+
+ off_t is 32-bit. There is off64_t, but no _FILE_OFFSET_BITS support.
+
+ sigset_t is too small on ARM and x86 (but correct on MIPS), so support
+ for real-time signals is broken. http://b/5828899
+
+ Too few TLS slots mean we can't allocate 128 pthread_key_t instances,
+ which POSIX says should be the minimum.
+
+ atexit(3) handlers registered by a shared library aren't called on
+ dlclose(3); this only affects ARM. http://b/4998315