Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 1 | KNOWN ABI BUGS |
| 2 | -------------- |
| 3 | |
| 4 | time_t is 32-bit. http://b/5819737 |
| 5 | |
| 6 | off_t is 32-bit. There is off64_t, but no _FILE_OFFSET_BITS support. |
| 7 | |
| 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 |
| 10 | |
Elliott Hughes | 0493a6f | 2013-03-07 11:48:58 -0800 | [diff] [blame] | 11 | atexit(3) handlers registered by a shared library aren't called on |
| 12 | dlclose(3); this only affects ARM. http://b/4998315 |