diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-27 03:29:35 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-05-27 03:29:35 -0700 |
commit | cdb68bf8ce26448cfe173d86f1c074e167c3420f (patch) | |
tree | 1b726243e78842727d932bd197010441589232fc /libc/docs/ISSUES.TXT | |
parent | 5c106fcaa5b9d0a3ebeb2e8cdca589129d6a7ebd (diff) | |
parent | 2735b33519595da5d51b79757ccce730021a9228 (diff) | |
download | bionic-cdb68bf8ce26448cfe173d86f1c074e167c3420f.zip bionic-cdb68bf8ce26448cfe173d86f1c074e167c3420f.tar.gz bionic-cdb68bf8ce26448cfe173d86f1c074e167c3420f.tar.bz2 |
Merge change 2470 into donut
* changes:
Fix getservent() so that it returns s_port in network byte order. Also add a new document detailing known issues in the C library.
Diffstat (limited to 'libc/docs/ISSUES.TXT')
-rw-r--r-- | libc/docs/ISSUES.TXT | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libc/docs/ISSUES.TXT b/libc/docs/ISSUES.TXT new file mode 100644 index 0000000..b53eb16 --- /dev/null +++ b/libc/docs/ISSUES.TXT @@ -0,0 +1,20 @@ +Bionic C Library Issues: +======================== + +This document lists important known issues of various releases +of the Bionic C library. Note that these differ from specific +implementation choices that are documented in the OVERVIEW.TXT +document. + +Currently known issues: +----------------------- + +- The C library initialization will improperly run static C++ + constructors located in shared libraries twice. + +Android-1.5 issues: +------------------- + +- getservbyname() returned the port number in the s_port field of + the 'struct servent' structure in host-byte-order, instead of + network-byte-order. |