The munmap() kernel calls are traced but the tracing code wasn't doing
anything with them. This caused the number of mapped regions in a process
to grow large in some cases and also caused symbol lookup errors in some
rare cases. This change also adds support for new trace record types
for supporting JNI (native) calls from Java into native code. This helps
with constructing a more accurate call stack.
* changes:
Force --no-undefined at link time to generate an error when trying to generate a shared library that references undefined symbols. This can be overriden by defining LOCAL_ALLOW_UNDEFINED_SYMBOLS in your Android.mk to 'true'
Merge commit '429fbd82d82c5e278a546de226c193138a9a2669' into donut
* commit '429fbd82d82c5e278a546de226c193138a9a2669':
AI 149005: Change from ndk to platform's ndk (pndk), the ability to make your own java callable libraries to c code.
Merge commit 'c3c7479ab6df0650e6e63b67ec713c7267df9e82' into donut
* commit 'c3c7479ab6df0650e6e63b67ec713c7267df9e82':
AI 148985: Adding an initial file for sensors content with doxygen content included from sensors.h.
Merge commit '6ff7572fd50f148e96d87ecb347f138f69ea810d' into donut
* commit '6ff7572fd50f148e96d87ecb347f138f69ea810d':
AI 148967: Cloned from CL 148932 by 'g4 patch'.
Merge commit '37ad99b38686f4b31976eae75256a0ac0927ca62' into donut
* commit '37ad99b38686f4b31976eae75256a0ac0927ca62':
AI 148943: Extracted the commentary from the runs to be headers for the log snippets for readability. Will update the steps (and commentary) in a separate CL.
Change XML schema to allow for empty <libs>, e.g. one can create
and add-on that doesn't declare any extra lib.
However enforce that <archives> contains at least one <archive>
element to prevent someone from declaring a download element
that cannot actually be downloaded.
Added a couple tests for validation of empty documents.
Merge commit '5cb2d23022cec5abc07c4dbb463be58e6d88b2c7' into donut
* commit '5cb2d23022cec5abc07c4dbb463be58e6d88b2c7':
AI 148875: Fix Google add-on to include Streetview, remove the add-account from the SDK (this is google specific), update the google Add-on to rev 2
Merge commit '7e056ae8a20848754f85202d9d903f4a152d3027' into donut
* commit '7e056ae8a20848754f85202d9d903f4a152d3027':
AI 148870: Pinging Ryan for Dr No approval.
---
Cloned from CL 147240 by 'g4 patch'.
Original change by dwarren@dwarren-pdk on 2009/04/21 14:59:50.
"Making PDK work in SDK environment."
This CL should be pretty straight forward and should be touching only PDK
related templates, etc. Turns out we no longer need to touch the highlightNav
code.
Automated import of CL 148870
* changes:
Fix bad dependency between generated shared libraries and the corresponding installed module. Also fixes the "make clean" target by the way.
* changes:
Fix the build-toolchain.sh script which doesn't work due to the new download location of the NDK sources and a small typo when using wget. Also make --force-download actually work.
Don't fail if valgrind (system version not the google3 one) is missing.
If the test fail, print the output of the test.
Added .pyc to the gitignore file.
First, the ApkBuilder didn't cancel its run if the project had markers from JDT.
Second, the try/catch on ApkBuilder#build didn't properly test the
CoreException status severity (used getCode instead of getSeverity), so it did
not detect cancels being thrown by #abortOnBadSetup and displayed the error
in the console instead.