OSDN Git Service

android-x86/bionic.git
9 years agoam f5d4f322: am 448a8596: Merge "Switch system_properties.cpp from bionic atomic...
Yabin Cui [Wed, 25 Feb 2015 21:14:44 +0000 (21:14 +0000)]
am f5d4f322: am 448a8596: Merge "Switch system_properties.cpp from bionic atomic operations to stdatomic."

* commit 'f5d4f322bbea9e5a5a1ec4025a0289123c667e5f':
  Switch system_properties.cpp from bionic atomic operations to stdatomic.

9 years agoam 448a8596: Merge "Switch system_properties.cpp from bionic atomic operations to...
Yabin Cui [Wed, 25 Feb 2015 21:10:42 +0000 (21:10 +0000)]
am 448a8596: Merge "Switch system_properties.cpp from bionic atomic operations to stdatomic."

* commit '448a85968da1e4622e829bb48fd888a38f9f6c49':
  Switch system_properties.cpp from bionic atomic operations to stdatomic.

9 years agoMerge "Switch system_properties.cpp from bionic atomic operations to stdatomic."
Yabin Cui [Wed, 25 Feb 2015 21:04:56 +0000 (21:04 +0000)]
Merge "Switch system_properties.cpp from bionic atomic operations to stdatomic."

9 years agoam a1e4a4a3: am 8c41eae6: Merge "Move getusershell/endusershell/setusershell to ndk_c...
Yabin Cui [Wed, 25 Feb 2015 16:52:39 +0000 (16:52 +0000)]
am a1e4a4a3: am 8c41eae6: Merge "Move getusershell/endusershell/setusershell to ndk_cruft.cpp."

* commit 'a1e4a4a3c68fc99958cc7a6e6fb7fed58feeaae8':
  Move getusershell/endusershell/setusershell to ndk_cruft.cpp.

9 years agoam 4600bdac: am af3ba5c8: Merge "Make all output of child test go to parent process...
Yabin Cui [Wed, 25 Feb 2015 16:52:35 +0000 (16:52 +0000)]
am 4600bdac: am af3ba5c8: Merge "Make all output of child test go to parent process in gtest_main."

* commit '4600bdac709969408ac446507d85881db55b0ca7':
  Make all output of child test go to parent process in gtest_main.

9 years agoam e93bc6bb: am d91ded81: Merge "Fix "faccessat ignores flags""
Nick Kralevich [Wed, 25 Feb 2015 16:52:22 +0000 (16:52 +0000)]
am e93bc6bb: am d91ded81: Merge "Fix "faccessat ignores flags""

* commit 'e93bc6bbe8ce180187e3914d0a7494cfe84f6255':
  Fix "faccessat ignores flags"

9 years agoam 8c41eae6: Merge "Move getusershell/endusershell/setusershell to ndk_cruft.cpp."
Yabin Cui [Wed, 25 Feb 2015 00:05:52 +0000 (00:05 +0000)]
am 8c41eae6: Merge "Move getusershell/endusershell/setusershell to ndk_cruft.cpp."

* commit '8c41eae6fcdb6cad1f6c46ae01708ead6b734060':
  Move getusershell/endusershell/setusershell to ndk_cruft.cpp.

9 years agoMerge "Move getusershell/endusershell/setusershell to ndk_cruft.cpp."
Yabin Cui [Wed, 25 Feb 2015 00:00:51 +0000 (00:00 +0000)]
Merge "Move getusershell/endusershell/setusershell to ndk_cruft.cpp."

9 years agoam af3ba5c8: Merge "Make all output of child test go to parent process in gtest_main."
Yabin Cui [Tue, 24 Feb 2015 23:48:02 +0000 (23:48 +0000)]
am af3ba5c8: Merge "Make all output of child test go to parent process in gtest_main."

* commit 'af3ba5c87319e19c10be6755b37af92521f702c2':
  Make all output of child test go to parent process in gtest_main.

9 years agoMerge "Make all output of child test go to parent process in gtest_main."
Yabin Cui [Tue, 24 Feb 2015 23:40:30 +0000 (23:40 +0000)]
Merge "Make all output of child test go to parent process in gtest_main."

9 years agoMove getusershell/endusershell/setusershell to ndk_cruft.cpp.
Yabin Cui [Tue, 24 Feb 2015 21:18:25 +0000 (13:18 -0800)]
Move getusershell/endusershell/setusershell to ndk_cruft.cpp.

Bug: 19108648
Change-Id: I65134040345398dde612c4325d902db58f3bd2be

9 years agoMake all output of child test go to parent process in gtest_main.
Yabin Cui [Tue, 24 Feb 2015 22:39:19 +0000 (14:39 -0800)]
Make all output of child test go to parent process in gtest_main.

Change-Id: Iad460e89755051cdb99593cbf42c97d9a359f32b

9 years agoam d91ded81: Merge "Fix "faccessat ignores flags""
Nick Kralevich [Tue, 24 Feb 2015 21:52:36 +0000 (21:52 +0000)]
am d91ded81: Merge "Fix "faccessat ignores flags""

* commit 'd91ded81376a10a1c89f7a5ae3c462ae3b24188e':
  Fix "faccessat ignores flags"

9 years agoMerge "Fix "faccessat ignores flags""
Nick Kralevich [Tue, 24 Feb 2015 21:49:09 +0000 (21:49 +0000)]
Merge "Fix "faccessat ignores flags""

9 years agoFix "faccessat ignores flags"
Nick Kralevich [Tue, 24 Feb 2015 21:40:43 +0000 (13:40 -0800)]
Fix "faccessat ignores flags"

The kernel system call faccessat() does not have any flags arguments,
so passing flags to the kernel is currently ignored.

Fix the kernel system call so that no flags argument is passed in.

Ensure that we don't support AT_SYMLINK_NOFOLLOW. This non-POSIX
(http://pubs.opengroup.org/onlinepubs/9699919799/functions/access.html)
flag is a glibc extension, and has non-intuitive, error prone behavior.

For example, consider the following code:

  symlink("foo.is.dangling", "foo");
  if (faccessat(AT_FDCWD, "foo", R_OK, AT_SYMLINK_NOFOLLOW) == 0) {
    int fd = openat(AT_FDCWD, "foo", O_RDONLY | O_NOFOLLOW);
  }

The faccessat() call in glibc will return true, but an attempt to
open the dangling symlink will end up failing. GLIBC documents this
as returning the access mode of the symlink itself, which will
always return true for any symlink on Linux.

Some further discussions of this are at:

  * http://lists.landley.net/pipermail/toybox-landley.net/2014-September/003617.html
  * http://permalink.gmane.org/gmane.linux.lib.musl.general/6952

AT_SYMLINK_NOFOLLOW seems broken by design. I suspect this is why this
function was never added to POSIX. (note that "access" is pretty much
broken by design too, since it introduces a race condition between
check and action). We shouldn't support this until it's clearly
documented by POSIX or we can have it produce intuitive results.

Don't support AT_EACCESS for now. Implementing it is complicated, and
pretty much useless on Android, since we don't have setuid binaries.
See http://git.musl-libc.org/cgit/musl/commit/?id=0a05eace163cee9b08571d2ff9d90f5e82d9c228
for how an implementation might look.

Bug: 18867827
Change-Id: I25b86c5020f3152ffa3ac3047f6c4152908d0e04

9 years agoSwitch system_properties.cpp from bionic atomic operations to stdatomic.
Yabin Cui [Wed, 11 Feb 2015 05:35:56 +0000 (21:35 -0800)]
Switch system_properties.cpp from bionic atomic operations to stdatomic.

Bug: 17177189
Change-Id: I42e05ad1c490cc7a8040138151afc0ee72a9b63f

9 years agoam 4ec60a01: am 2aef607b: Merge "Fix dup2 in the case where the two fds are equal."
Elliott Hughes [Tue, 24 Feb 2015 06:03:02 +0000 (06:03 +0000)]
am 4ec60a01: am 2aef607b: Merge "Fix dup2 in the case where the two fds are equal."

* commit '4ec60a017859b39d490cfeb089ed30da09863def':
  Fix dup2 in the case where the two fds are equal.

9 years agoam 2aef607b: Merge "Fix dup2 in the case where the two fds are equal."
Elliott Hughes [Tue, 24 Feb 2015 05:59:52 +0000 (05:59 +0000)]
am 2aef607b: Merge "Fix dup2 in the case where the two fds are equal."

* commit '2aef607b25c463baed5ae70d14212e24ea7bcf2b':
  Fix dup2 in the case where the two fds are equal.

9 years agoMerge "Fix dup2 in the case where the two fds are equal."
Elliott Hughes [Tue, 24 Feb 2015 05:55:37 +0000 (05:55 +0000)]
Merge "Fix dup2 in the case where the two fds are equal."

9 years agoFix dup2 in the case where the two fds are equal.
Elliott Hughes [Tue, 24 Feb 2015 02:02:29 +0000 (18:02 -0800)]
Fix dup2 in the case where the two fds are equal.

dup3's behavior differs from dup2 in this case, so we need to paper
over that in the C library.

Change-Id: I313cd6f226db5e237f61866f324c5ecdd12bf762

9 years agoam 491c09e0: am 393bdb15: Merge "Add RLIM_SAVED_CUR and RLIM_SAVED_MAX."
Elliott Hughes [Mon, 23 Feb 2015 22:52:54 +0000 (22:52 +0000)]
am 491c09e0: am 393bdb15: Merge "Add RLIM_SAVED_CUR and RLIM_SAVED_MAX."

* commit '491c09e0d5921edd57da2efb0c8ed4f32df93fe2':
  Add RLIM_SAVED_CUR and RLIM_SAVED_MAX.

9 years agoam 393bdb15: Merge "Add RLIM_SAVED_CUR and RLIM_SAVED_MAX."
Elliott Hughes [Mon, 23 Feb 2015 22:45:14 +0000 (22:45 +0000)]
am 393bdb15: Merge "Add RLIM_SAVED_CUR and RLIM_SAVED_MAX."

* commit '393bdb156d5024a03f03425a977d0518c84dbb98':
  Add RLIM_SAVED_CUR and RLIM_SAVED_MAX.

9 years agoMerge "Add RLIM_SAVED_CUR and RLIM_SAVED_MAX."
Elliott Hughes [Mon, 23 Feb 2015 22:36:06 +0000 (22:36 +0000)]
Merge "Add RLIM_SAVED_CUR and RLIM_SAVED_MAX."

9 years agoAdd RLIM_SAVED_CUR and RLIM_SAVED_MAX.
Elliott Hughes [Mon, 23 Feb 2015 21:41:40 +0000 (13:41 -0800)]
Add RLIM_SAVED_CUR and RLIM_SAVED_MAX.

Change-Id: Ia6be76460bfcf852832325c5f36cb272f49a4b87

9 years agoam 07e218a4: am 3d83b189: Merge "[MIPS64] Fix mips64 build."
Elliott Hughes [Mon, 23 Feb 2015 16:12:38 +0000 (16:12 +0000)]
am 07e218a4: am 3d83b189: Merge "[MIPS64] Fix mips64 build."

* commit '07e218a484d8a1ac71c3b9317e86f5ba39aae919':
  [MIPS64] Fix mips64 build.

9 years agoam 3d83b189: Merge "[MIPS64] Fix mips64 build."
Elliott Hughes [Mon, 23 Feb 2015 16:09:17 +0000 (16:09 +0000)]
am 3d83b189: Merge "[MIPS64] Fix mips64 build."

* commit '3d83b18970f32467596830845793b18a858f59e6':
  [MIPS64] Fix mips64 build.

9 years agoMerge "[MIPS64] Fix mips64 build."
Elliott Hughes [Mon, 23 Feb 2015 16:04:20 +0000 (16:04 +0000)]
Merge "[MIPS64] Fix mips64 build."

9 years ago[MIPS64] Fix mips64 build.
Nikola Veljkovic [Mon, 23 Feb 2015 15:14:56 +0000 (16:14 +0100)]
[MIPS64] Fix mips64 build.

Build was broken by:
https://android-review.googlesource.com/133834

Use <unistd.h> to get syscall().
Remove <asm/unistd.h>, it gets included through <sys/syscall.h>.

Change-Id: Id762f6dea5f9538c19b79cdd46deda978efd50fe

9 years agoam 4602d8c7: am 04bbef37: Merge "Fix 64-bit benchmark build"
Greg Hackmann [Fri, 20 Feb 2015 19:27:13 +0000 (19:27 +0000)]
am 4602d8c7: am 04bbef37: Merge "Fix 64-bit benchmark build"

* commit '4602d8c7621ffd87e32f53c8f7e8ac5453a404ca':
  Fix 64-bit benchmark build

9 years agoam 04bbef37: Merge "Fix 64-bit benchmark build"
Greg Hackmann [Fri, 20 Feb 2015 19:21:19 +0000 (19:21 +0000)]
am 04bbef37: Merge "Fix 64-bit benchmark build"

* commit '04bbef377b9941bf6d67d9c515b6640a314fb032':
  Fix 64-bit benchmark build

9 years agoMerge "Fix 64-bit benchmark build"
Greg Hackmann [Fri, 20 Feb 2015 19:16:48 +0000 (19:16 +0000)]
Merge "Fix 64-bit benchmark build"

9 years agoFix 64-bit benchmark build
Greg Hackmann [Fri, 20 Feb 2015 19:00:14 +0000 (11:00 -0800)]
Fix 64-bit benchmark build

The * flag to printf() wants an int instead of size_t, and these are
distinct types on 64-bit.  To accomodate this, make the name column
width helpers return int.

In theory this truncates things, but in practice this only matters if
you have a benchmark with more than INT_MAX characters in its name (in
which case you have bigger problems).

Change-Id: I3338948c25a3a8d84f1ead2f5b457c05da8a01cf
Signed-off-by: Greg Hackmann <ghackmann@google.com>
9 years agoam 6421f8f5: am c39eef71: Merge "valgrind can\'t find syscall because we didn\'t...
Elliott Hughes [Fri, 20 Feb 2015 17:08:47 +0000 (17:08 +0000)]
am 6421f8f5: am c39eef71: Merge "valgrind can\'t find syscall because we didn\'t put it in <unistd.h>."

* commit '6421f8f5b21357b3f956f4b20c3622f96863a219':
  valgrind can't find syscall because we didn't put it in <unistd.h>.

9 years agoam c39eef71: Merge "valgrind can\'t find syscall because we didn\'t put it in <unistd...
Elliott Hughes [Fri, 20 Feb 2015 17:02:25 +0000 (17:02 +0000)]
am c39eef71: Merge "valgrind can\'t find syscall because we didn\'t put it in <unistd.h>."

* commit 'c39eef71a7f66b69e2216a51d0e7fbc1796d0696':
  valgrind can't find syscall because we didn't put it in <unistd.h>.

9 years agoMerge "valgrind can't find syscall because we didn't put it in <unistd.h>."
Elliott Hughes [Fri, 20 Feb 2015 16:56:57 +0000 (16:56 +0000)]
Merge "valgrind can't find syscall because we didn't put it in <unistd.h>."

9 years agovalgrind can't find syscall because we didn't put it in <unistd.h>.
Elliott Hughes [Fri, 20 Feb 2015 06:49:44 +0000 (22:49 -0800)]
valgrind can't find syscall because we didn't put it in <unistd.h>.

Change-Id: I1e47291d4476bd2816138a8cf58f29d4986d39e3

9 years agoam 479070c5: am 324313a9: Merge "Refactor the benchmark code."
Christopher Ferris [Fri, 20 Feb 2015 01:03:22 +0000 (01:03 +0000)]
am 479070c5: am 324313a9: Merge "Refactor the benchmark code."

* commit '479070c51e34f9f9f809df4daa8184e5b2947f14':
  Refactor the benchmark code.

9 years agoam 324313a9: Merge "Refactor the benchmark code."
Christopher Ferris [Fri, 20 Feb 2015 00:59:18 +0000 (00:59 +0000)]
am 324313a9: Merge "Refactor the benchmark code."

* commit '324313a9e58c0e8d2546d124d8fcf04306a114f5':
  Refactor the benchmark code.

9 years agoMerge "Refactor the benchmark code."
Christopher Ferris [Fri, 20 Feb 2015 00:53:24 +0000 (00:53 +0000)]
Merge "Refactor the benchmark code."

9 years agoam a6395dda: Merge commit \'9d7f68ebfd79b1ce54dc56bceb7346f34615e5a1\' into HEAD
Bill Yi [Fri, 20 Feb 2015 00:22:45 +0000 (00:22 +0000)]
am a6395dda: Merge commit \'9d7f68ebfd79b1ce54dc56bceb7346f34615e5a1\' into HEAD

* commit 'a6395dda54057170fc66faf00410e983202aa7e0':

9 years agoRefactor the benchmark code.
Christopher Ferris [Wed, 18 Feb 2015 03:58:53 +0000 (19:58 -0800)]
Refactor the benchmark code.

Changes:
- Modify the benchmarks to derive from a single Benchmark object.
- Rewrite the main iteration code. This includes changing the iteration
  code to use the actual total time calculated by the benchmark as a basis
  for determining whether there are enough iterations instead of using
  the time it takes to run the benchmark.
- Allow benchmarks to take no argument, int, or double.
- Fix the PrettyInt printer for negative integers.
- Modify the max column width name to include the whole name including
  the arg part.
- Reformat property_benchmark.cpp in line with the rest of the code.
- Modify a few of the math benchmarks to take an argument instead of
  separate benchmarks for the same function with different args.
- Create a vector of regex_t structs to represent the args all at
  once instead of when running each benchmark.

This change is in preparation for adding new math based benchmarks.

Tested by running on a nexus flo running at max using the new code
and the old code and comparing. All of the numbers are similar, but
some of the iterations are different due to the slightly different
algorithm used.

Change-Id: I57ad1f3ff083282b9ffeb72e687cab369ce3523a

9 years agoMerge commit '9d7f68ebfd79b1ce54dc56bceb7346f34615e5a1' into HEAD
Bill Yi [Thu, 19 Feb 2015 22:30:25 +0000 (14:30 -0800)]
Merge commit '9d7f68ebfd79b1ce54dc56bceb7346f34615e5a1' into HEAD

9 years agoRevert "Modify test to avoid race condition."
Christopher Ferris [Thu, 19 Feb 2015 21:35:16 +0000 (21:35 +0000)]
Revert "Modify test to avoid race condition."

This reverts commit 3da136aa47e2d1608b98abb2580f024b36f92831.

This change is not needed any where but lmp mr1.

Change-Id: I3f38e2e8e418959a487bc0c4148d3238743e4626

9 years agoam d071b814: am 97484d3a: Merge "Add GNU extensions mempcpy and wmemcpy."
Elliott Hughes [Thu, 19 Feb 2015 16:01:31 +0000 (16:01 +0000)]
am d071b814: am 97484d3a: Merge "Add GNU extensions mempcpy and wmemcpy."

* commit 'd071b814ac5674ca032c05f369b2606cf3520332':
  Add GNU extensions mempcpy and wmemcpy.

9 years agoam 97484d3a: Merge "Add GNU extensions mempcpy and wmemcpy."
Elliott Hughes [Thu, 19 Feb 2015 15:55:12 +0000 (15:55 +0000)]
am 97484d3a: Merge "Add GNU extensions mempcpy and wmemcpy."

* commit '97484d3a9d0d822aeaaa1547aeb76d7669076082':
  Add GNU extensions mempcpy and wmemcpy.

9 years agoMerge "Add GNU extensions mempcpy and wmemcpy."
Elliott Hughes [Thu, 19 Feb 2015 15:49:53 +0000 (15:49 +0000)]
Merge "Add GNU extensions mempcpy and wmemcpy."

9 years agoAdd GNU extensions mempcpy and wmemcpy.
Elliott Hughes [Thu, 19 Feb 2015 05:29:13 +0000 (21:29 -0800)]
Add GNU extensions mempcpy and wmemcpy.

Used by elfutils. On the bright side, they stopped using __mempcpy.

Bug: 18374026
Change-Id: Id29bbe6ef1c5ed5a171bb6c32182f129d8332abb

9 years agoam 43379c9c: am 3e1b5f46: Merge "Parameterize use of clang in libc_ndk."
Dan Albert [Thu, 19 Feb 2015 02:44:25 +0000 (02:44 +0000)]
am 43379c9c: am 3e1b5f46: Merge "Parameterize use of clang in libc_ndk."

* commit '43379c9cfd7416e448b9b2834dd4f7b80697942a':
  Parameterize use of clang in libc_ndk.

9 years agoam 3e1b5f46: Merge "Parameterize use of clang in libc_ndk."
Dan Albert [Thu, 19 Feb 2015 02:37:21 +0000 (02:37 +0000)]
am 3e1b5f46: Merge "Parameterize use of clang in libc_ndk."

* commit '3e1b5f46c07aef5983ecf2feb1c3369b2cd200c0':
  Parameterize use of clang in libc_ndk.

9 years agoMerge "Parameterize use of clang in libc_ndk."
Dan Albert [Thu, 19 Feb 2015 02:33:08 +0000 (02:33 +0000)]
Merge "Parameterize use of clang in libc_ndk."

9 years agoam 3da136aa: Modify test to avoid race condition.
Christopher Ferris [Thu, 19 Feb 2015 02:12:45 +0000 (02:12 +0000)]
am 3da136aa: Modify test to avoid race condition.

* commit '3da136aa47e2d1608b98abb2580f024b36f92831':
  Modify test to avoid race condition.

9 years agoModify test to avoid race condition.
Christopher Ferris [Thu, 19 Feb 2015 01:11:47 +0000 (17:11 -0800)]
Modify test to avoid race condition.

There is a possible race if a timer is set to trigger at nearly the same
time as it is set. Since nobody uses the timers like this, modify the test
so this doesn't happen. The race that this can provoke has been fixed in
aosp.

Bug: 19423618
Change-Id: I21084c99da5ae46f404936d673dae6bad7c82caa

9 years agoParameterize use of clang in libc_ndk.
Dan Albert [Thu, 19 Feb 2015 01:37:52 +0000 (17:37 -0800)]
Parameterize use of clang in libc_ndk.

We still have issues with clang coverage in static libraries, so we
need to make sure we follow suit with the rest of libc for now.

Bug: 17574078
Change-Id: I2ab58a84b1caa0d8d08415d240c35adec5b1e150

9 years agoam 1cb009fb: am d3fa31a5: Merge "[MIPS] Fix setjmp signals"
Elliott Hughes [Thu, 19 Feb 2015 01:12:41 +0000 (01:12 +0000)]
am 1cb009fb: am d3fa31a5: Merge "[MIPS] Fix setjmp signals"

* commit '1cb009fb5eb513e838085d75617db676fcfa7aa7':
  [MIPS] Fix setjmp signals

9 years agoam d3fa31a5: Merge "[MIPS] Fix setjmp signals"
Elliott Hughes [Thu, 19 Feb 2015 01:06:06 +0000 (01:06 +0000)]
am d3fa31a5: Merge "[MIPS] Fix setjmp signals"

* commit 'd3fa31a55d542d51fc3f2df46af7c1b701ecb86e':
  [MIPS] Fix setjmp signals

9 years agoMerge "[MIPS] Fix setjmp signals"
Elliott Hughes [Thu, 19 Feb 2015 01:00:18 +0000 (01:00 +0000)]
Merge "[MIPS] Fix setjmp signals"

9 years agoam 37197363: am 4add77b9: Merge "Make gets() deprecated."
Yabin Cui [Wed, 18 Feb 2015 22:57:05 +0000 (22:57 +0000)]
am 37197363: am 4add77b9: Merge "Make gets() deprecated."

* commit '371973633c579a32125c4b01c4235eb5f529cb4e':
  Make gets() deprecated.

9 years agoam 08148bc9: am 1dbc6bb0: Merge "Implement _FILE_OFFSET_BITS (mostly)."
Elliott Hughes [Wed, 18 Feb 2015 22:57:04 +0000 (22:57 +0000)]
am 08148bc9: am 1dbc6bb0: Merge "Implement _FILE_OFFSET_BITS (mostly)."

* commit '08148bc9825ea337168819f3d92a0c7ef4ffe1f9':
  Implement _FILE_OFFSET_BITS (mostly).

9 years agoam 4add77b9: Merge "Make gets() deprecated."
Yabin Cui [Wed, 18 Feb 2015 22:50:54 +0000 (22:50 +0000)]
am 4add77b9: Merge "Make gets() deprecated."

* commit '4add77b93c0c61381faa9d4d8dc62f81cafcc69a':
  Make gets() deprecated.

9 years agoam 1dbc6bb0: Merge "Implement _FILE_OFFSET_BITS (mostly)."
Elliott Hughes [Wed, 18 Feb 2015 22:50:32 +0000 (22:50 +0000)]
am 1dbc6bb0: Merge "Implement _FILE_OFFSET_BITS (mostly)."

* commit '1dbc6bb02521ba1535748826eeaf28404160d788':
  Implement _FILE_OFFSET_BITS (mostly).

9 years agoMerge "Make gets() deprecated."
Yabin Cui [Wed, 18 Feb 2015 21:33:01 +0000 (21:33 +0000)]
Merge "Make gets() deprecated."

9 years agoMake gets() deprecated.
Yabin Cui [Wed, 18 Feb 2015 20:20:32 +0000 (12:20 -0800)]
Make gets() deprecated.

gets is already deprecated in glibc. Others with __warnattr are not deprecated.

Change-Id: I80a276d2b5964630218be47f1c94b146c0d31151

9 years agoMerge "Implement _FILE_OFFSET_BITS (mostly)."
Elliott Hughes [Wed, 18 Feb 2015 18:01:04 +0000 (18:01 +0000)]
Merge "Implement _FILE_OFFSET_BITS (mostly)."

9 years agoam 77f3c847: am 9ec37c7f: Merge "Update tzdata to tzdata2015a"
Neil Fuller [Wed, 18 Feb 2015 10:18:10 +0000 (10:18 +0000)]
am 77f3c847: am 9ec37c7f: Merge "Update tzdata to tzdata2015a"

* commit '77f3c847c4b04c8d28f81b3cb0c2782fadf928f9':
  Update tzdata to tzdata2015a

9 years agoam 9ec37c7f: Merge "Update tzdata to tzdata2015a"
Neil Fuller [Wed, 18 Feb 2015 10:13:59 +0000 (10:13 +0000)]
am 9ec37c7f: Merge "Update tzdata to tzdata2015a"

* commit '9ec37c7fa979c573e5743c343d38370cab1a67e4':
  Update tzdata to tzdata2015a

9 years agoMerge "Update tzdata to tzdata2015a"
Neil Fuller [Wed, 18 Feb 2015 09:42:31 +0000 (09:42 +0000)]
Merge "Update tzdata to tzdata2015a"

9 years agoImplement _FILE_OFFSET_BITS (mostly).
Elliott Hughes [Sat, 7 Feb 2015 06:28:49 +0000 (22:28 -0800)]
Implement _FILE_OFFSET_BITS (mostly).

I still don't think we can make stdio's fseeko and ftello work, but we can
have everything else, and very few programs use fseeko/ftello (and they can
just refrain from using _FILE_OFFSET_BITS and be no worse off than they are
today).

Bug: 11865851
Change-Id: Ic3cb409aae6713f4b345de954bcc4241fcd969ec

9 years agoam a9751801: am 5890ec3e: Merge "Update NDK compatlib for 4.1.2."
Dan Albert [Wed, 18 Feb 2015 01:17:12 +0000 (01:17 +0000)]
am a9751801: am 5890ec3e: Merge "Update NDK compatlib for 4.1.2."

* commit 'a9751801481e112bbe1fe97e7300a395f418b96a':
  Update NDK compatlib for 4.1.2.

9 years agoam 814bce07: am 21ba1d4c: Merge "Update the NDK compatlib for 4.4.4 and ToT."
Dan Albert [Wed, 18 Feb 2015 01:17:11 +0000 (01:17 +0000)]
am 814bce07: am 21ba1d4c: Merge "Update the NDK compatlib for 4.4.4 and ToT."

* commit '814bce074dac0359a7251904000d2f89ad6164a4':
  Update the NDK compatlib for 4.4.4 and ToT.

9 years agoam 5890ec3e: Merge "Update NDK compatlib for 4.1.2."
Dan Albert [Wed, 18 Feb 2015 01:10:42 +0000 (01:10 +0000)]
am 5890ec3e: Merge "Update NDK compatlib for 4.1.2."

* commit '5890ec3e229cbe115308e103111fec471f2319b7':
  Update NDK compatlib for 4.1.2.

9 years agoam 21ba1d4c: Merge "Update the NDK compatlib for 4.4.4 and ToT."
Dan Albert [Wed, 18 Feb 2015 01:10:41 +0000 (01:10 +0000)]
am 21ba1d4c: Merge "Update the NDK compatlib for 4.4.4 and ToT."

* commit '21ba1d4ce43b1619e0d0a8248f6249810cabe374':
  Update the NDK compatlib for 4.4.4 and ToT.

9 years agoMerge "Update NDK compatlib for 4.1.2."
Dan Albert [Wed, 18 Feb 2015 01:05:48 +0000 (01:05 +0000)]
Merge "Update NDK compatlib for 4.1.2."

9 years agoMerge "Update the NDK compatlib for 4.4.4 and ToT."
Dan Albert [Wed, 18 Feb 2015 01:05:43 +0000 (01:05 +0000)]
Merge "Update the NDK compatlib for 4.4.4 and ToT."

9 years agoUpdate NDK compatlib for 4.1.2.
Dan Albert [Fri, 13 Feb 2015 00:35:09 +0000 (16:35 -0800)]
Update NDK compatlib for 4.1.2.

The replacement new failures present in newer versions are present
here as well, with the following new issues:

XPASS std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long_double.pass.cpp

This is from the -NaN formatting fix in bionic. We previously had this
wrong, and the upstream test is also wrong. There's currently an XFAIL
for Android in this test because I haven't fixed the upstream test
yet. After that is done, I'll need to teach the test runner how to
XFAIL older Android versions...

FAIL std/localization/locale.categories/category.ctype/facet.ctype.special/facet.ctype.char.dtor/dtor.pass.cpp
    dtor.pass.cpp:39: int main(): assertion "globalMemCounter.checkDeleteArrayCalledEq(1)" failed

Haven't investigated this one yet. http://b/19412688

Note that this also needs the libgcc link ordering to be fixed in the
build system, as we'll otherwise depend on libgcc symbols from libc
that may or may not have been there.

The build fix can't be submitted because the proper link order causes
the libgcc unwinder to be used instead of the EHABI one:
http://b/18471342

Bug: 18471532
Change-Id: Icf560485a9b8f5ebbe01e4458703e62ec94df5e1

9 years agoUpdate the NDK compatlib for 4.4.4 and ToT.
Dan Albert [Tue, 10 Feb 2015 01:45:22 +0000 (17:45 -0800)]
Update the NDK compatlib for 4.4.4 and ToT.

Now passes all libc++ tests for these targets, with the exception of
the usual failing replacement new tests since libc uses new/delete for
things. I don't know if we can ever really fix these.

Bug: 18471532
Change-Id: Ibc0a15f26b0e4613249b5e15ecf3cf80e523467c

9 years agoam faf5e195: am 0e61c2c0: Merge "Revert "Move use of __warnattr to __deprecated.""
Yabin Cui [Wed, 18 Feb 2015 00:03:45 +0000 (00:03 +0000)]
am faf5e195: am 0e61c2c0: Merge "Revert "Move use of __warnattr to __deprecated.""

* commit 'faf5e195e1a06f8c738b34cc939e6432535c8ff3':
  Revert "Move use of __warnattr to __deprecated."

9 years agoam 0e61c2c0: Merge "Revert "Move use of __warnattr to __deprecated.""
Yabin Cui [Tue, 17 Feb 2015 23:59:58 +0000 (23:59 +0000)]
am 0e61c2c0: Merge "Revert "Move use of __warnattr to __deprecated.""

* commit '0e61c2c0ea201e157d0d3d3c04564588bcfb7c66':
  Revert "Move use of __warnattr to __deprecated."

9 years agoMerge "Revert "Move use of __warnattr to __deprecated.""
Yabin Cui [Tue, 17 Feb 2015 23:56:29 +0000 (23:56 +0000)]
Merge "Revert "Move use of __warnattr to __deprecated.""

9 years agoRevert "Move use of __warnattr to __deprecated."
Yabin Cui [Tue, 17 Feb 2015 23:54:40 +0000 (23:54 +0000)]
Revert "Move use of __warnattr to __deprecated."

This reverts commit 4645c4f62df49d1ece5aabb7c9fa44ca34d30272.

Change-Id: I6c1062d54a4e2c4f41ce7a403e4e7840e6339146

9 years agoam 0769bb4f: am b5c23796: Merge "Move use of __warnattr to __deprecated."
Yabin Cui [Tue, 17 Feb 2015 23:20:55 +0000 (23:20 +0000)]
am 0769bb4f: am b5c23796: Merge "Move use of __warnattr to __deprecated."

* commit '0769bb4fcf5dfcc346330430a7f649d3be8f2346':
  Move use of __warnattr to __deprecated.

9 years agoam b5c23796: Merge "Move use of __warnattr to __deprecated."
Yabin Cui [Tue, 17 Feb 2015 23:16:01 +0000 (23:16 +0000)]
am b5c23796: Merge "Move use of __warnattr to __deprecated."

* commit 'b5c23796872dee26d7fa88f0a41801dcc6090d99':
  Move use of __warnattr to __deprecated.

9 years agoMerge "Move use of __warnattr to __deprecated."
Yabin Cui [Tue, 17 Feb 2015 23:10:30 +0000 (23:10 +0000)]
Merge "Move use of __warnattr to __deprecated."

9 years agoMove use of __warnattr to __deprecated.
Yabin Cui [Tue, 17 Feb 2015 20:39:39 +0000 (12:39 -0800)]
Move use of __warnattr to __deprecated.

clang don't support warning attribute. Replacing warning attriubte with
deprecated attribute can achieve the same behavior whether compiled by
gcc or clang.

Bug: 19340053
Change-Id: I064432b81cf55212458edbc749eb72dc15a810fb

9 years agoam 2f86c3de: am 54b61b7c: Merge "Accuracy tests for libm"
Christopher Ferris [Tue, 17 Feb 2015 21:50:27 +0000 (21:50 +0000)]
am 2f86c3de: am 54b61b7c: Merge "Accuracy tests for libm"

* commit '2f86c3deb52bfd46614b16b9debbadac41baec89':
  Accuracy tests for libm

9 years agoam 515c1f23: am 89dad68e: Merge "Change getgrent error declaration message to proper...
Yabin Cui [Tue, 17 Feb 2015 21:46:39 +0000 (21:46 +0000)]
am 515c1f23: am 89dad68e: Merge "Change getgrent error declaration message to proper style."

* commit '515c1f234bade0ad63d25c07cf57f058fa5934ea':
  Change getgrent error declaration message to proper style.

9 years agoam 54b61b7c: Merge "Accuracy tests for libm"
Christopher Ferris [Tue, 17 Feb 2015 21:46:38 +0000 (21:46 +0000)]
am 54b61b7c: Merge "Accuracy tests for libm"

* commit '54b61b7ca7d7c9c7474e2beb35d20a9ab635529f':
  Accuracy tests for libm

9 years agoMerge "Accuracy tests for libm"
Christopher Ferris [Tue, 17 Feb 2015 21:41:41 +0000 (21:41 +0000)]
Merge "Accuracy tests for libm"

9 years agoam 89dad68e: Merge "Change getgrent error declaration message to proper style."
Yabin Cui [Tue, 17 Feb 2015 21:36:33 +0000 (21:36 +0000)]
am 89dad68e: Merge "Change getgrent error declaration message to proper style."

* commit '89dad68efb07ef0868c2ac35737a4b2c83aea326':
  Change getgrent error declaration message to proper style.

9 years agoam 5a973492: am c2085138: Merge "Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX."
Elliott Hughes [Tue, 17 Feb 2015 21:32:28 +0000 (21:32 +0000)]
am 5a973492: am c2085138: Merge "Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX."

* commit '5a9734920c25ebb1aed389fd87fa9a26904aa239':
  Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX.

9 years agoMerge "Change getgrent error declaration message to proper style."
Yabin Cui [Tue, 17 Feb 2015 21:29:21 +0000 (21:29 +0000)]
Merge "Change getgrent error declaration message to proper style."

9 years agoam c2085138: Merge "Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX."
Elliott Hughes [Tue, 17 Feb 2015 21:26:25 +0000 (21:26 +0000)]
am c2085138: Merge "Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX."

* commit 'c20851380cf5466a8bc422e7c26d3868a95423a9':
  Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX.

9 years agoMerge "Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX."
Elliott Hughes [Tue, 17 Feb 2015 21:20:39 +0000 (21:20 +0000)]
Merge "Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX."

9 years agoChange getgrent error declaration message to proper style.
Yabin Cui [Tue, 17 Feb 2015 19:33:42 +0000 (11:33 -0800)]
Change getgrent error declaration message to proper style.

Bug: 19340053
Change-Id: I9c47a2016f356d171a5f2082acb8391d81e019b2

9 years agoam f8a49b04: am fb48c682: Merge "Fix memchr overflow."
Elliott Hughes [Tue, 17 Feb 2015 18:04:53 +0000 (18:04 +0000)]
am f8a49b04: am fb48c682: Merge "Fix memchr overflow."

* commit 'f8a49b04a981d867c4deda6f27deaf702711cfc1':
  Fix memchr overflow.

9 years agoam fb48c682: Merge "Fix memchr overflow."
Elliott Hughes [Tue, 17 Feb 2015 17:58:51 +0000 (17:58 +0000)]
am fb48c682: Merge "Fix memchr overflow."

* commit 'fb48c68221afb1f9e7c63a15a20cca0857d1b9f9':
  Fix memchr overflow.

9 years agoFix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX.
Elliott Hughes [Tue, 17 Feb 2015 17:55:58 +0000 (09:55 -0800)]
Fix sysconf for _SC_CHILD_MAX and _SC_OPEN_MAX.

Change-Id: I656f613166bd604f35b31e5ec042a5230c6b82b8

9 years agoMerge "Fix memchr overflow."
Elliott Hughes [Tue, 17 Feb 2015 17:54:39 +0000 (17:54 +0000)]
Merge "Fix memchr overflow."

9 years agoam 1084911f: am 40d06b25: Merge "POSIX says flock is in <sys/file.h>, not <unistd...
Elliott Hughes [Tue, 17 Feb 2015 17:23:26 +0000 (17:23 +0000)]
am 1084911f: am 40d06b25: Merge "POSIX says flock is in <sys/file.h>, not <unistd.h>."

* commit '1084911fc297b262600a5caed9a94d6ddde7cc66':
  POSIX says flock is in <sys/file.h>, not <unistd.h>.

9 years agoam 40d06b25: Merge "POSIX says flock is in <sys/file.h>, not <unistd.h>."
Elliott Hughes [Tue, 17 Feb 2015 17:19:06 +0000 (17:19 +0000)]
am 40d06b25: Merge "POSIX says flock is in <sys/file.h>, not <unistd.h>."

* commit '40d06b25ac86260e9c1701540420c9634bab8bad':
  POSIX says flock is in <sys/file.h>, not <unistd.h>.

9 years agoMerge "POSIX says flock is in <sys/file.h>, not <unistd.h>."
Elliott Hughes [Tue, 17 Feb 2015 17:09:34 +0000 (17:09 +0000)]
Merge "POSIX says flock is in <sys/file.h>, not <unistd.h>."