OSDN Git Service

android-x86/bionic.git
11 years agoam 800ad824: Merge "Provide glibc-compatible SYS_* aliases for the __NR_* constants."
Elliott Hughes [Fri, 22 Mar 2013 01:49:24 +0000 (18:49 -0700)]
am 800ad824: Merge "Provide glibc-compatible SYS_* aliases for the __NR_* constants."

* commit '800ad8249a398e94d039b6f6597e2a51558e41dd':
  Provide glibc-compatible SYS_* aliases for the __NR_* constants.

11 years agoMerge "Provide glibc-compatible SYS_* aliases for the __NR_* constants."
Elliott Hughes [Fri, 22 Mar 2013 01:41:57 +0000 (01:41 +0000)]
Merge "Provide glibc-compatible SYS_* aliases for the __NR_* constants."

11 years agoProvide glibc-compatible SYS_* aliases for the __NR_* constants.
Elliott Hughes [Fri, 22 Mar 2013 01:06:55 +0000 (18:06 -0700)]
Provide glibc-compatible SYS_* aliases for the __NR_* constants.

This helps us remove another external/strace bionic hack.

Change-Id: I3e82c0d2fd27e479be98f096e05b666fd16f8eb3

11 years agoam 6eb978c9: Merge "Expose wait4 as wait4 rather than __wait4."
Elliott Hughes [Thu, 21 Mar 2013 23:18:22 +0000 (16:18 -0700)]
am 6eb978c9: Merge "Expose wait4 as wait4 rather than __wait4."

* commit '6eb978c9bf02d2bcdece2826577cc65900030690':
  Expose wait4 as wait4 rather than __wait4.

11 years agoMerge "Expose wait4 as wait4 rather than __wait4."
Elliott Hughes [Thu, 21 Mar 2013 23:14:47 +0000 (23:14 +0000)]
Merge "Expose wait4 as wait4 rather than __wait4."

11 years agoExpose wait4 as wait4 rather than __wait4.
Elliott Hughes [Thu, 21 Mar 2013 22:43:53 +0000 (15:43 -0700)]
Expose wait4 as wait4 rather than __wait4.

This helps strace(1) compile with one fewer hack.

Change-Id: I5296d0cfec5546709cda990abd705ad33d7c4626

11 years agoam 86c31849: Merge "Create arch specific versions of strcmp."
Christopher Ferris [Wed, 20 Mar 2013 22:29:06 +0000 (15:29 -0700)]
am 86c31849: Merge "Create arch specific versions of strcmp."

* commit '86c318497270c80a3791b4cd9835367653636377':
  Create arch specific versions of strcmp.

11 years agoMerge "Create arch specific versions of strcmp."
Christopher Ferris [Wed, 20 Mar 2013 22:14:48 +0000 (22:14 +0000)]
Merge "Create arch specific versions of strcmp."

11 years agoCreate arch specific versions of strcmp.
Christopher Ferris [Sat, 9 Mar 2013 00:50:31 +0000 (16:50 -0800)]
Create arch specific versions of strcmp.

This uses the new strcmp.a15.S code as the basis for new versions
of strcmp.S.

The cortex-a15 code is the performance optimized version of strcmp.a15.S
taken with only the addition of a few pld instructions.
The cortex-a9 code is the same as the cortex-a15 code except that the
unaligned strcmp code was taken from the original strcmp.S.
The krait code is the same as the cortex-a15 code except that one path
in the unaligned strcmp code was taken from the original strcmp.S code
(the 2 byte overlap case).
The generic code is the original unmodified strmp.S from the bionic
subdirectory.

All three new versions underwent these test cases:

Strings the same, all same size:
- Both pointers double word aligned.
- One pointer double word aligned, one pointer word aligned.
- Both pointers word aligned.
- One pointer double word aligned, one pointer 1 off a word alignment.
- One pointer double word aligned, one pointer 2 off a word alignment.
- One pointer double word aligned, one pointer 3 off a word alignment.
- One pointer word aligned, one pointer 1 off a word alignment.
- One pointer word aligned, one pointer 2 off a word alignment.
- One pointer word aligned, one pointer 3 off a word alignment.
For all cases where it made sense, the two pointers were also tested
swapped.

Different strings, all same size:
- Single difference at double word boundary.
- Single difference at word boudary.
- Single difference at 1 off a word alignment.
- Single difference at 2 off a word alignment.
- Single difference at 3 off a word alignment.

Different sized strings, strings the same until the end:
- Shorter string ends on a double word boundary.
- Shorter string ends on word boundary.
- Shorter string ends at 1 off a word boundary.
- Shorter string ends at 2 off a word boundary.
- Shorter string ends at 3 off a word boundary.

For all different cases, run them through the same pointer alignment
cases when the strings are the same size.
For all cases the two pointers were also tested swapped.

Bug: 8005082

Merge from internal master.

(cherry-picked from commit a9a5870d166f8060a8182cd61e5536b0becea74e)

Change-Id: I4c2b98f8a50804fb98ab67f75e9d660f1315a144

11 years agoam adeec096: Merge "Hide various symbols that shouldn\'t be exposed."
Elliott Hughes [Sat, 16 Mar 2013 00:07:45 +0000 (17:07 -0700)]
am adeec096: Merge "Hide various symbols that shouldn\'t be exposed."

* commit 'adeec096292a3ad63767f13af04836249ecbc075':
  Hide various symbols that shouldn't be exposed.

11 years agoMerge "Hide various symbols that shouldn't be exposed."
Elliott Hughes [Fri, 15 Mar 2013 23:52:09 +0000 (23:52 +0000)]
Merge "Hide various symbols that shouldn't be exposed."

11 years agoam c1416647: Merge "Clean up internal libc logging."
Elliott Hughes [Fri, 15 Mar 2013 23:34:05 +0000 (16:34 -0700)]
am c1416647: Merge "Clean up internal libc logging."

* commit 'c14166477e7fd22693eab194d37624c2f7506ce4':
  Clean up internal libc logging.

11 years agoHide various symbols that shouldn't be exposed.
Elliott Hughes [Fri, 15 Mar 2013 23:31:09 +0000 (16:31 -0700)]
Hide various symbols that shouldn't be exposed.

A mangled symbol in libc.so is a symbol that shouldn't be exported
by libc.so.

Change-Id: Id92d1e1968b3d11d111a5d9ef692adb1ac7694a1

11 years agoMerge "Clean up internal libc logging."
Elliott Hughes [Fri, 15 Mar 2013 23:21:36 +0000 (23:21 +0000)]
Merge "Clean up internal libc logging."

11 years agoClean up internal libc logging.
Elliott Hughes [Fri, 15 Mar 2013 22:30:25 +0000 (15:30 -0700)]
Clean up internal libc logging.

We only need one logging API, and I prefer the one that does no
allocation and is thus safe to use in any context.

Also use O_CLOEXEC when opening the /dev/log files.

Move everything logging-related into one header file.

Change-Id: Ic1e3ea8e9b910dc29df351bff6c0aa4db26fbb58

11 years agoam e23ed8c6: Merge "Remove useless workaround for HTC RIL bugs."
Elliott Hughes [Fri, 15 Mar 2013 18:43:50 +0000 (11:43 -0700)]
am e23ed8c6: Merge "Remove useless workaround for HTC RIL bugs."

* commit 'e23ed8c6441389a79c6504295184f7249e01a197':
  Remove useless workaround for HTC RIL bugs.

11 years agoMerge "Remove useless workaround for HTC RIL bugs."
Elliott Hughes [Fri, 15 Mar 2013 18:26:49 +0000 (18:26 +0000)]
Merge "Remove useless workaround for HTC RIL bugs."

11 years agoRemove useless workaround for HTC RIL bugs.
Elliott Hughes [Fri, 15 Mar 2013 18:21:15 +0000 (11:21 -0700)]
Remove useless workaround for HTC RIL bugs.

HTC's RIL uses the liblog logging, not ours.

Change-Id: I56f9304e833ccb329df4ee55042012d7ad5f73ed

11 years agoam 4d696eb4: Merge "Fix a bug in ZoneCompactor that meant the zonetab offset was...
Elliott Hughes [Fri, 15 Mar 2013 00:40:26 +0000 (17:40 -0700)]
am 4d696eb4: Merge "Fix a bug in ZoneCompactor that meant the zonetab offset was wrong."

* commit '4d696eb49d24590a6d6d25657b5bc0103e2d90ba':
  Fix a bug in ZoneCompactor that meant the zonetab offset was wrong.

11 years agoMerge "Fix a bug in ZoneCompactor that meant the zonetab offset was wrong."
Elliott Hughes [Fri, 15 Mar 2013 00:30:48 +0000 (00:30 +0000)]
Merge "Fix a bug in ZoneCompactor that meant the zonetab offset was wrong."

11 years agoFix a bug in ZoneCompactor that meant the zonetab offset was wrong.
Elliott Hughes [Fri, 15 Mar 2013 00:10:24 +0000 (17:10 -0700)]
Fix a bug in ZoneCompactor that meant the zonetab offset was wrong.

Bug: 8391426
Change-Id: Ia4a8889b5a613aa96bb3fb5d89a921c913ff7626

11 years agoam d30b9f09: Merge "Remove unused arm defines."
Christopher Ferris [Thu, 14 Mar 2013 23:32:21 +0000 (16:32 -0700)]
am d30b9f09: Merge "Remove unused arm defines."

* commit 'd30b9f0912b4763f0d98bdee23064015223ec03f':
  Remove unused arm defines.

11 years agoMerge "Remove unused arm defines."
Christopher Ferris [Thu, 14 Mar 2013 23:23:42 +0000 (23:23 +0000)]
Merge "Remove unused arm defines."

11 years agoRemove unused arm defines.
Christopher Ferris [Thu, 28 Feb 2013 00:25:03 +0000 (16:25 -0800)]
Remove unused arm defines.

The defines HAVE_32_BYTE_CACHE_LINES and ARCH_ARM_USE_NON_NEON_MEMCPY
are not used by any code. The previous memcpy code that used these
has been split into different architecture versions to avoid the need
for them.

Bug: 8005082

Merge from internal master.

(cherry-picked from commit 6e1a5cf31ba47508b08dba02a45b4ea6e1edd6d2)

Change-Id: Ib18fc3f4131b21cdbd19b9dde7697ac25d066fcf

11 years agoam f861bc5c: Merge "Don\'t search off the end of the index for bad Olson ids."
Elliott Hughes [Thu, 14 Mar 2013 22:17:09 +0000 (15:17 -0700)]
am f861bc5c: Merge "Don\'t search off the end of the index for bad Olson ids."

* commit 'f861bc5cc3e17322e49f89deea61f278aaefbe76':
  Don't search off the end of the index for bad Olson ids.

11 years agoMerge "Don't search off the end of the index for bad Olson ids."
Elliott Hughes [Thu, 14 Mar 2013 22:05:44 +0000 (22:05 +0000)]
Merge "Don't search off the end of the index for bad Olson ids."

11 years agoDon't search off the end of the index for bad Olson ids.
Elliott Hughes [Thu, 14 Mar 2013 21:38:08 +0000 (14:38 -0700)]
Don't search off the end of the index for bad Olson ids.

In the old code, the index was a file to itself, so it made sense to
read until you hit the end of the file. In the new code, the index is
followed by hundreds of KiB of data, so we need to just search the
index.

Bug: 8368791
Change-Id: Icf5f8b5516cf3a93679fa849c9f6cd1cb100e0f1

11 years agoam ec706c24: Merge "Use the kernel\'s MAX_ERRNO in the syscall stubs."
Elliott Hughes [Wed, 13 Mar 2013 00:54:00 +0000 (17:54 -0700)]
am ec706c24: Merge "Use the kernel\'s MAX_ERRNO in the syscall stubs."

* commit 'ec706c24acb4d1db6a583a57b76adfb9250d39eb':
  Use the kernel's MAX_ERRNO in the syscall stubs.

11 years agoMerge "Use the kernel's MAX_ERRNO in the syscall stubs."
Elliott Hughes [Wed, 13 Mar 2013 00:44:33 +0000 (00:44 +0000)]
Merge "Use the kernel's MAX_ERRNO in the syscall stubs."

11 years agoUse the kernel's MAX_ERRNO in the syscall stubs.
Elliott Hughes [Tue, 12 Mar 2013 21:57:30 +0000 (14:57 -0700)]
Use the kernel's MAX_ERRNO in the syscall stubs.

Bug: http://code.google.com/p/android/issues/detail?id=53104
Change-Id: Iaabf7025b153e96dc5eca231a33a32d4cb7d8116

11 years agoam 980508b0: Merge "Break bionic implementations into arch versions."
Christopher Ferris [Tue, 12 Mar 2013 22:39:38 +0000 (15:39 -0700)]
am 980508b0: Merge "Break bionic implementations into arch versions."

* commit '980508b0ead3ee01e99e93635c57eb76d1aba62d':
  Break bionic implementations into arch versions.

11 years agoMerge "Break bionic implementations into arch versions."
Christopher Ferris [Tue, 12 Mar 2013 22:24:09 +0000 (22:24 +0000)]
Merge "Break bionic implementations into arch versions."

11 years agoBreak bionic implementations into arch versions.
Christopher Ferris [Tue, 26 Feb 2013 09:30:00 +0000 (01:30 -0800)]
Break bionic implementations into arch versions.

Move arch specific code for arm, mips, x86 into separate
makefiles.
In addition, add different arm cpu versions of memcpy/memset.

Bug: 8005082

Merge from internal master (acdde8c1cf8e8beed98c052757d96695b820b50c).

Change-Id: I04f3d0715104fab618e1abf7cf8f7eec9bec79df

11 years agoam 94a34010: Merge "Support large errno values on ARM."
Elliott Hughes [Tue, 12 Mar 2013 19:17:15 +0000 (12:17 -0700)]
am 94a34010: Merge "Support large errno values on ARM."

* commit '94a34010c1f989032c0a4dc7a7a68d069ca23b1e':
  Support large errno values on ARM.

11 years agoMerge "Support large errno values on ARM."
Elliott Hughes [Tue, 12 Mar 2013 19:08:36 +0000 (19:08 +0000)]
Merge "Support large errno values on ARM."

11 years agoam f21aa3b6: Merge "Use more types than just \'unsigned\' in the linker."
Elliott Hughes [Tue, 12 Mar 2013 19:00:55 +0000 (12:00 -0700)]
am f21aa3b6: Merge "Use more types than just \'unsigned\' in the linker."

* commit 'f21aa3b61ebc6b1a7c34265699f40bd9b5af7952':
  Use more types than just 'unsigned' in the linker.

11 years agoSupport large errno values on ARM.
Elliott Hughes [Tue, 12 Mar 2013 18:55:45 +0000 (11:55 -0700)]
Support large errno values on ARM.

Bug: http://code.google.com/p/android/issues/detail?id=53104
Change-Id: Ic6c40be2dc50f0644a3d8b09ceae59c38f2d5b53

11 years agoMerge "Use more types than just 'unsigned' in the linker."
Elliott Hughes [Tue, 12 Mar 2013 18:54:27 +0000 (18:54 +0000)]
Merge "Use more types than just 'unsigned' in the linker."

11 years agoUse more types than just 'unsigned' in the linker.
Elliott Hughes [Tue, 12 Mar 2013 17:40:45 +0000 (10:40 -0700)]
Use more types than just 'unsigned' in the linker.

Still chipping away at the situation where every variable in the
linker was of type 'unsigned'. This patch switches counts over to
being size_t and adds an explicit type for init/fini function pointers
and arrays of function pointers.

Also improve logging from CallArray.

Also remove trailing "\n"s from log messages.

Change-Id: Ie036d2622caac50f4d29f0570888bb527661d77e

11 years agoam 6b4c77f8: Merge "Use Elf32_Addr instead of unsigned in linker"
Elliott Hughes [Tue, 12 Mar 2013 17:38:46 +0000 (10:38 -0700)]
am 6b4c77f8: Merge "Use Elf32_Addr instead of unsigned in linker"

* commit '6b4c77f854c079138d552608b9df5fa3035f0fcc':
  Use Elf32_Addr instead of unsigned in linker

11 years agoMerge "Use Elf32_Addr instead of unsigned in linker"
Elliott Hughes [Tue, 12 Mar 2013 17:24:03 +0000 (17:24 +0000)]
Merge "Use Elf32_Addr instead of unsigned in linker"

11 years agoUse Elf32_Addr instead of unsigned in linker
Kito Cheng [Tue, 12 Mar 2013 06:58:06 +0000 (14:58 +0800)]
Use Elf32_Addr instead of unsigned in linker

Change-Id: I52dcbb4b0ff0a4052e0ad7a9bbeb2df65c9d2f66

11 years agoam 53630c0e: Merge "Cache the most-recently used timezone for mktime_tz and localtime...
Elliott Hughes [Tue, 12 Mar 2013 01:44:19 +0000 (18:44 -0700)]
am 53630c0e: Merge "Cache the most-recently used timezone for mktime_tz and localtime_tz."

* commit '53630c0e5bb6f845ba633e8dedc08b827f7b5d0c':
  Cache the most-recently used timezone for mktime_tz and localtime_tz.

11 years agoMerge "Cache the most-recently used timezone for mktime_tz and localtime_tz."
Elliott Hughes [Tue, 12 Mar 2013 01:28:36 +0000 (01:28 +0000)]
Merge "Cache the most-recently used timezone for mktime_tz and localtime_tz."

11 years agoCache the most-recently used timezone for mktime_tz and localtime_tz.
Elliott Hughes [Tue, 12 Mar 2013 00:17:02 +0000 (17:17 -0700)]
Cache the most-recently used timezone for mktime_tz and localtime_tz.

Normally, the C library implicitly caches your timezone by virtue
of the fact that the prehistoric API assumes a single timezone for
the entire process.

The unfortunate mktime_tz and localtime_tz extensions work around
this, but represent timezones as strings to their callers, so code
that makes heavy use of these needs a cache to be able to perform
acceptably until it can hopefully one day be rewritten to use
java.util.Calendar or icu4c.

Bug: 8270865
Change-Id: I92e3964e86dc33ceac925f819cc5e26ff4203f50

11 years agoam 7915b22e: am a4b20d71: am b8e1033c: (-s ours) am e5412a9a: (-s ours) Reconcile...
Jean-Baptiste Queru [Mon, 11 Mar 2013 19:30:58 +0000 (12:30 -0700)]
am 7915b22e: am a4b20d71: am b8e1033c: (-s ours) am e5412a9a: (-s ours) Reconcile with jb-mr1-release - do not merge

* commit '7915b22e8f70b80a9fc2c41f9734194c58b546fc':

11 years agoam a4b20d71: am b8e1033c: (-s ours) am e5412a9a: (-s ours) Reconcile with jb-mr1...
Jean-Baptiste Queru [Mon, 11 Mar 2013 19:28:17 +0000 (12:28 -0700)]
am a4b20d71: am b8e1033c: (-s ours) am e5412a9a: (-s ours) Reconcile with jb-mr1-release - do not merge

* commit 'a4b20d712b9c6cbc562529d3a41bf8ea1515562a':

11 years agoam b8e1033c: (-s ours) am e5412a9a: (-s ours) Reconcile with jb-mr1-release - do...
Jean-Baptiste Queru [Mon, 11 Mar 2013 19:22:41 +0000 (12:22 -0700)]
am b8e1033c: (-s ours) am e5412a9a: (-s ours) Reconcile with jb-mr1-release - do not merge

* commit 'b8e1033c5b5813cb97d19645075591a357e9f04a':

11 years agoam e5412a9a: (-s ours) Reconcile with jb-mr1-release - do not merge
Jean-Baptiste Queru [Mon, 11 Mar 2013 19:19:03 +0000 (12:19 -0700)]
am e5412a9a: (-s ours) Reconcile with jb-mr1-release - do not merge

* commit 'e5412a9a9597433ae2540b390269c514c46402f1':

11 years agoReconcile with jb-mr1-release - do not merge
Jean-Baptiste Queru [Mon, 11 Mar 2013 19:15:11 +0000 (12:15 -0700)]
Reconcile with jb-mr1-release - do not merge

11 years agoam 4b032ee9: Merge "Let bionic use the correct definition of ssize_t."
Elliott Hughes [Mon, 11 Mar 2013 18:07:29 +0000 (11:07 -0700)]
am 4b032ee9: Merge "Let bionic use the correct definition of ssize_t."

* commit '4b032ee9b94137e41ee54e9bb3bcf0ba5ad43cbc':
  Let bionic use the correct definition of ssize_t.

11 years agoMerge "Let bionic use the correct definition of ssize_t."
Elliott Hughes [Mon, 11 Mar 2013 17:55:27 +0000 (17:55 +0000)]
Merge "Let bionic use the correct definition of ssize_t."

11 years agoam 62c5cd07: Merge "Upgrade to tzdata2013b."
Elliott Hughes [Mon, 11 Mar 2013 16:57:53 +0000 (09:57 -0700)]
am 62c5cd07: Merge "Upgrade to tzdata2013b."

* commit '62c5cd0781e95c1c50b63c37a9a87bc158e64d38':
  Upgrade to tzdata2013b.

11 years agoMerge "Upgrade to tzdata2013b."
Elliott Hughes [Mon, 11 Mar 2013 16:42:57 +0000 (16:42 +0000)]
Merge "Upgrade to tzdata2013b."

11 years agoUpgrade to tzdata2013b.
Elliott Hughes [Mon, 11 Mar 2013 16:41:45 +0000 (09:41 -0700)]
Upgrade to tzdata2013b.

From the release notes:

  Changes affecting current and future time stamps:

    Haiti uses US daylight-saving rules this year, and presumably future years.
    This changes time stamps starting today.  (Thanks to Steffen Thorsen.)

    Paraguay will end DST on March 24 this year.
    (Thanks to Steffen Thorsen.)  For now, assume it's just this year.

    Morocco does not observe DST during Ramadan;
    try to predict Ramadan in Morocco as best we can.
    (Thanks to Erik Homoet for the heads-up.)

Change-Id: I98d5290ea5a1d9fb1eeddab1c9e72135dc9e4bd1

11 years agoLet bionic use the correct definition of ssize_t.
Elliott Hughes [Fri, 8 Mar 2013 23:28:52 +0000 (15:28 -0800)]
Let bionic use the correct definition of ssize_t.

Bug: 8253769
Change-Id: I50c7cc20828fc089b83580e039ce9153a6c5a8cc

11 years agoam 809eed1d: Merge "Regenerate NOTICE files."
Elliott Hughes [Thu, 7 Mar 2013 20:02:00 +0000 (12:02 -0800)]
am 809eed1d: Merge "Regenerate NOTICE files."

* commit '809eed1dedb833af1aba56c6a1d059123b43049a':
  Regenerate NOTICE files.

11 years agoMerge "Regenerate NOTICE files."
Elliott Hughes [Thu, 7 Mar 2013 19:57:17 +0000 (19:57 +0000)]
Merge "Regenerate NOTICE files."

11 years agoRegenerate NOTICE files.
Elliott Hughes [Thu, 7 Mar 2013 19:48:58 +0000 (11:48 -0800)]
Regenerate NOTICE files.

Also clean up some obsolete cruft.

Change-Id: Iec3b36f6607f7a08b72de99294ed5b6cd910dd5f

11 years agoam c9f80814: Merge "Upgrade to current NetBSD popen/pclose."
Elliott Hughes [Thu, 7 Mar 2013 01:03:28 +0000 (17:03 -0800)]
am c9f80814: Merge "Upgrade to current NetBSD popen/pclose."

* commit 'c9f80814259a81dce12ba35d1750fa2b23fef48d':
  Upgrade to current NetBSD popen/pclose.

11 years agoMerge "Upgrade to current NetBSD popen/pclose."
Elliott Hughes [Thu, 7 Mar 2013 00:54:22 +0000 (00:54 +0000)]
Merge "Upgrade to current NetBSD popen/pclose."

11 years agoUpgrade to current NetBSD popen/pclose.
Elliott Hughes [Thu, 7 Mar 2013 00:20:55 +0000 (16:20 -0800)]
Upgrade to current NetBSD popen/pclose.

This gets us back to using vfork now our ARM vfork assembler stub is
fixed, and adds the missing thread safety for the 'pidlist'.

Bug: 5335385
Change-Id: Ib08bfa65b2cb9fa695717aae629ea14816bf988d

11 years agoam 33031fed: Merge "Fix typo of DT_NEEDED for DT_NULL"
Brian Carlstrom [Thu, 7 Mar 2013 00:11:07 +0000 (16:11 -0800)]
am 33031fed: Merge "Fix typo of DT_NEEDED for DT_NULL"

* commit '33031fed84e24fb7791f123df45abc1a3812ac59':
  Fix typo of DT_NEEDED for DT_NULL

11 years agoMerge "Fix typo of DT_NEEDED for DT_NULL"
Brian Carlstrom [Wed, 6 Mar 2013 23:55:56 +0000 (23:55 +0000)]
Merge "Fix typo of DT_NEEDED for DT_NULL"

11 years agoFix typo of DT_NEEDED for DT_NULL
Brian Carlstrom [Wed, 6 Mar 2013 23:32:16 +0000 (15:32 -0800)]
Fix typo of DT_NEEDED for DT_NULL

(cherry-pick of 138b205ea9efc117fe522c2d7191378023a6e2cd)

Change-Id: Ia895cb3018df55554627f1f61dcdfdada4a961ce

11 years agoam db794197: Merge "Fix debug malloc."
Elliott Hughes [Wed, 6 Mar 2013 23:22:24 +0000 (15:22 -0800)]
am db794197: Merge "Fix debug malloc."

* commit 'db794197cc880e3805bcefbea780476a359066c2':
  Fix debug malloc.

11 years agoMerge "Fix debug malloc."
Elliott Hughes [Wed, 6 Mar 2013 23:13:01 +0000 (23:13 +0000)]
Merge "Fix debug malloc."

11 years agoFix debug malloc.
Elliott Hughes [Wed, 6 Mar 2013 23:03:53 +0000 (15:03 -0800)]
Fix debug malloc.

This was broken by the change to use AT_RANDOM for the stack guards.

Bug: 7959813
Bug: 8330764
Change-Id: I791900092b72a9a900f16585237fa7ad82aaed9f

11 years agoam 0b4a85bf: Merge "Fix TIMING/STATS/COUNT_PAGES dynamic linker build"
Elliott Hughes [Wed, 6 Mar 2013 17:41:56 +0000 (09:41 -0800)]
am 0b4a85bf: Merge "Fix TIMING/STATS/COUNT_PAGES dynamic linker build"

* commit '0b4a85bf1e11e28f66d0f101f9e7d4c51a0bb31c':
  Fix TIMING/STATS/COUNT_PAGES dynamic linker build

11 years agoMerge "Fix TIMING/STATS/COUNT_PAGES dynamic linker build"
Elliott Hughes [Wed, 6 Mar 2013 17:25:51 +0000 (17:25 +0000)]
Merge "Fix TIMING/STATS/COUNT_PAGES dynamic linker build"

11 years agoFix TIMING/STATS/COUNT_PAGES dynamic linker build
Kito Cheng [Wed, 6 Mar 2013 15:52:45 +0000 (23:52 +0800)]
Fix TIMING/STATS/COUNT_PAGES dynamic linker build

Change-Id: I6432ac378816da253b83d1c7fb1d3fb64647b89e

11 years agoam 20958207: Merge "Fix MIPS linker build"
Brian Carlstrom [Wed, 6 Mar 2013 09:17:27 +0000 (01:17 -0800)]
am 20958207: Merge "Fix MIPS linker build"

* commit '20958207d5f9d36cc6f6b3edc4ff899c73b72b02':
  Fix MIPS linker build

11 years agoMerge "Fix MIPS linker build"
Brian Carlstrom [Wed, 6 Mar 2013 09:06:16 +0000 (09:06 +0000)]
Merge "Fix MIPS linker build"

11 years agoFix MIPS linker build
Brian Carlstrom [Wed, 6 Mar 2013 09:03:25 +0000 (01:03 -0800)]
Fix MIPS linker build

(cherry-picked from 8c7d8c2057e303985f78eab96da747ddaa013c78)

Change-Id: Idcf62ab95f8fccbc2d7c3e771a4cfbe768a1555e

11 years agoam c41dcad0: Merge "More linker cleanup."
Elliott Hughes [Wed, 6 Mar 2013 06:42:33 +0000 (22:42 -0800)]
am c41dcad0: Merge "More linker cleanup."

* commit 'c41dcad040ede2975ea63e383a8a3d36e3642d56':
  More linker cleanup.

11 years agoMerge "More linker cleanup."
Elliott Hughes [Wed, 6 Mar 2013 06:26:55 +0000 (06:26 +0000)]
Merge "More linker cleanup."

11 years agoMore linker cleanup.
Elliott Hughes [Wed, 6 Mar 2013 02:47:58 +0000 (18:47 -0800)]
More linker cleanup.

Change-Id: I9fb3c7c0d4b4ffef0eeaf092d4e30ffe63a08671

11 years agoam 036f9097: Merge "Minor linker cleanup, primarily to use Elf32_Dyn"
Brian Carlstrom [Wed, 6 Mar 2013 01:20:35 +0000 (17:20 -0800)]
am 036f9097: Merge "Minor linker cleanup, primarily to use Elf32_Dyn"

* commit '036f909720fd0d56dbd04b9a761fb1d0714980b0':
  Minor linker cleanup, primarily to use Elf32_Dyn

11 years agoMerge "Minor linker cleanup, primarily to use Elf32_Dyn"
Brian Carlstrom [Wed, 6 Mar 2013 01:01:23 +0000 (01:01 +0000)]
Merge "Minor linker cleanup, primarily to use Elf32_Dyn"

11 years agoMinor linker cleanup, primarily to use Elf32_Dyn
Brian Carlstrom [Thu, 28 Feb 2013 23:58:45 +0000 (15:58 -0800)]
Minor linker cleanup, primarily to use Elf32_Dyn

Change-Id: Ifa9408e9859c6f79444715bed4808b7c13fdced5

11 years agoam be21fe7a: Merge "Upgrade to tzdata2013a."
Elliott Hughes [Tue, 5 Mar 2013 22:22:01 +0000 (14:22 -0800)]
am be21fe7a: Merge "Upgrade to tzdata2013a."

* commit 'be21fe7a5947e24f9f0db90f8e16c54766d1237a':
  Upgrade to tzdata2013a.

11 years agoMerge "Upgrade to tzdata2013a."
Elliott Hughes [Tue, 5 Mar 2013 22:19:14 +0000 (22:19 +0000)]
Merge "Upgrade to tzdata2013a."

11 years agoUpgrade to tzdata2013a.
Elliott Hughes [Tue, 5 Mar 2013 22:00:38 +0000 (14:00 -0800)]
Upgrade to tzdata2013a.

From the release notes:

    Chile's 2013 rules, and we guess rules for 2014 and later, will be
    the same as 2012, namely Apr Sun>=23 03:00 UTC to Sep Sun>=2 04:00 UTC.
    (Thanks to Steffen Thorsen and Robert Elz.)

    New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen.
    (Thanks to Tobias Conradi and Arthur David Olson.)

Change-Id: I351e04b3348420ad7df7c648963c235b534033d2

11 years agoam 133d97e4: Merge "Add stack unwinding directives to memcpy."
Ben Cheng [Tue, 5 Mar 2013 21:17:23 +0000 (13:17 -0800)]
am 133d97e4: Merge "Add stack unwinding directives to memcpy."

* commit '133d97e4b07a733787fb85692ad8427fdc3d1d22':
  Add stack unwinding directives to memcpy.

11 years agoMerge "Add stack unwinding directives to memcpy."
Ben Cheng [Tue, 5 Mar 2013 21:04:38 +0000 (21:04 +0000)]
Merge "Add stack unwinding directives to memcpy."

11 years agoam cf9a9604: Merge "Switch to upstream-freebsd for the unmolested wchar code."
Elliott Hughes [Tue, 5 Mar 2013 20:27:09 +0000 (12:27 -0800)]
am cf9a9604: Merge "Switch to upstream-freebsd for the unmolested wchar code."

* commit 'cf9a9604adb27600c79ca236578a8be89168202f':
  Switch to upstream-freebsd for the unmolested wchar code.

11 years agoMerge "Switch to upstream-freebsd for the unmolested wchar code."
Elliott Hughes [Tue, 5 Mar 2013 20:13:32 +0000 (20:13 +0000)]
Merge "Switch to upstream-freebsd for the unmolested wchar code."

11 years agoam d392e044: Merge "Move realpath.c to upstream-freebsd."
Elliott Hughes [Mon, 4 Mar 2013 16:25:58 +0000 (08:25 -0800)]
am d392e044: Merge "Move realpath.c to upstream-freebsd."

* commit 'd392e044c7a03ff1c0903c3512d00955bc7de473':
  Move realpath.c to upstream-freebsd.

11 years agoSwitch to upstream-freebsd for the unmolested wchar code.
Elliott Hughes [Sat, 2 Mar 2013 02:35:56 +0000 (18:35 -0800)]
Switch to upstream-freebsd for the unmolested wchar code.

Change-Id: I87b4d76ff8da04109ae53638eec4f11629798960

11 years agoMerge "Move realpath.c to upstream-freebsd."
Elliott Hughes [Sat, 2 Mar 2013 01:22:04 +0000 (01:22 +0000)]
Merge "Move realpath.c to upstream-freebsd."

11 years agoMove realpath.c to upstream-freebsd.
Elliott Hughes [Sat, 2 Mar 2013 00:59:46 +0000 (16:59 -0800)]
Move realpath.c to upstream-freebsd.

This is actually a slightly newer upstream version than the one I
originally pulled. Hopefully now it's in upstream-freebsd it will
be easier to track upstream, though I still need to sit down and
write the necessary scripts at some point.

Bug: 5110679
Change-Id: I87e563f0f95aa8e68b45578e2a8f448bbf827a33

11 years agoAdd stack unwinding directives to memcpy.
Ben Cheng [Fri, 1 Mar 2013 20:38:09 +0000 (12:38 -0800)]
Add stack unwinding directives to memcpy.

Also include some Android specific header files.

Change-Id: Idbcbd43458ba945ca8c61bfbc04ea15fc0ae4e00

11 years agoam c5c6cb3f: am 66273ac2: Merge "Adding strcmp tuned for Cortex-A15."
Ben Cheng [Fri, 1 Mar 2013 18:26:52 +0000 (10:26 -0800)]
am c5c6cb3f: am 66273ac2: Merge "Adding strcmp tuned for Cortex-A15."

* commit 'c5c6cb3f13642386e08acf687b4bc39f568bad0c':
  Adding strcmp tuned for Cortex-A15.

11 years agoam 8f149da0: am b3b1ab62: Merge "Adding memcpy tuned for Cortex-A15."
Ben Cheng [Fri, 1 Mar 2013 18:26:52 +0000 (10:26 -0800)]
am 8f149da0: am b3b1ab62: Merge "Adding memcpy tuned for Cortex-A15."

* commit '8f149da08dc3125824e168f8d29613be80b2085c':
  Adding memcpy tuned for Cortex-A15.

11 years agoam 305a9995: am 8fa924e5: Merge "unistd.h: don\'t include sys/capability.h"
Nick Kralevich [Fri, 1 Mar 2013 18:26:51 +0000 (10:26 -0800)]
am 305a9995: am 8fa924e5: Merge "unistd.h: don\'t include sys/capability.h"

* commit '305a999589a8dfde077589106853522d483d24d2':
  unistd.h: don't include sys/capability.h

11 years agoam 66273ac2: Merge "Adding strcmp tuned for Cortex-A15."
Ben Cheng [Fri, 1 Mar 2013 18:24:58 +0000 (10:24 -0800)]
am 66273ac2: Merge "Adding strcmp tuned for Cortex-A15."

* commit '66273ac2b6b8c2042350204575bd290d96dea681':
  Adding strcmp tuned for Cortex-A15.

11 years agoam b3b1ab62: Merge "Adding memcpy tuned for Cortex-A15."
Ben Cheng [Fri, 1 Mar 2013 18:24:58 +0000 (10:24 -0800)]
am b3b1ab62: Merge "Adding memcpy tuned for Cortex-A15."

* commit 'b3b1ab6213df15f99c9af3088cfe733428816fd3':
  Adding memcpy tuned for Cortex-A15.

11 years agoam 8fa924e5: Merge "unistd.h: don\'t include sys/capability.h"
Nick Kralevich [Fri, 1 Mar 2013 18:24:57 +0000 (10:24 -0800)]
am 8fa924e5: Merge "unistd.h: don\'t include sys/capability.h"

* commit '8fa924e5dff4588cca8586e0e727b9a544db7083':
  unistd.h: don't include sys/capability.h

11 years agoMerge "Adding strcmp tuned for Cortex-A15."
Ben Cheng [Fri, 1 Mar 2013 18:18:33 +0000 (18:18 +0000)]
Merge "Adding strcmp tuned for Cortex-A15."

11 years agoMerge "Adding memcpy tuned for Cortex-A15."
Ben Cheng [Fri, 1 Mar 2013 18:18:05 +0000 (18:18 +0000)]
Merge "Adding memcpy tuned for Cortex-A15."