- 07 Nov, 2014 1 commit
-
-
Christopher Ferris authored
Many of the windows files where not including stdlib.h even though they are using malloc/free calls. Bug: 18283958 (cherry picked from commit ae7bf095) Change-Id: Iebc09cc314fa8f0ba6c6cd45ba26135052f156dd
-
- 05 Nov, 2014 2 commits
-
-
Nick Kralevich authored
automerge: 66723007 * commit '66723007': Ensure /data/adb exists
-
Nick Kralevich authored
Ensure that /data/adb always exists. This directory is used for writing adb debugging information when persist.adb.trace_mask is set. Bug: https://code.google.com/p/android/issues/detail?id=72895 (cherry picked from commit 89252ce3) Change-Id: I44e01bee50125f4e6e5fff6e74c53bb2022ce355
-
- 03 Nov, 2014 11 commits
-
-
Michael Lentine authored
-
Michael Lentine authored
Bug: 18076253 Change-Id: I8dbe3af88f52f18f74a3ab857fea53ae7585e2f7
-
Christopher Ferris authored
am 5bd96311: DO NOT MERGE Restore libcorkscrew unwinding. automerge: 5a69c1db -s ours automerge: d7c8db12 -s ours * commit '5bd96311':
-
Christopher Ferris authored
* commit '91ce3576':
-
Christopher Ferris authored
automerge: d7c8db12 -s ours * commit 'd7c8db12':
-
Christopher Ferris authored
automerge: e916313d * commit 'e916313d':
-
Christopher Ferris authored
-
Nick Kralevich authored
"errno.h" doesn't get included on mac so we need to do it explicitely. system/core/libnativebridge/tests/CodeCacheExists_test.cpp:30:15: error: use of undeclared identifier 'ENOENT' ASSERT_EQ(ENOENT, errno); (cherry picked from commit bcd1a834) Change-Id: Ib894e3a3912a943c61787461f127e4b11aacf212
-
Christopher Ferris authored
- Fix a problem where a tid exits before the attach completes, and it causes debuggerd to self terminate. - Fix a problem where sibling tid dumps do not properly wait for the tid to get signalled. Bug: 17800180 Bug: 12567315 Change-Id: Ic3cd619cc2c72402f9a45f14abeed4721b50d64d
-
- 29 Oct, 2014 1 commit
-
-
Sami Tolvanen authored
If the system partition is larger than 2G, the device fails to read verity metadata, because fseek accepts only a 32-bit signed offset. Switch from fseek to lseek64 to allow seeking using a 64-bit offset, which solves the problem. At the same time, move away from stdio in the function. Bug: 17705619 Change-Id: I226320498dcb750ec6cde84411c7fe0774c9cab7
-
- 28 Oct, 2014 3 commits
-
-
Calin Juravle authored
-
Calin Juravle authored
-
Calin Juravle authored
Bug: 18027433 (cherry picked from commit 59a719c4) Change-Id: I32bcf3ae0d4569d4d8b88168e6c36ddff70b8f7d
-
- 27 Oct, 2014 4 commits
-
-
Paul Lawrence authored
-
Iliyan Malchev authored
adb shell prlimit <pid> <cur> <max> prlimit uses prlimit internally to allow you to set the limits on an arbitrary process, if you have the privileges to. Change-Id: Ie9a5dc510c7c695debd8f948361d4c51befa5604 Signed-off-by:
Iliyan Malchev <malchev@google.com>
-
Paul Lawrence authored
Bug: 18119147 Change-Id: I75e5edf83fa01dbf2495e24df4597dce41f13654
-
Calin Juravle authored
Also: - add kPreInitiliazed state to native bridge with check transition: kOpened->kPreInitialized->kInitialized - made sure we free the memory for the code_cache_path - tidy up some error messages - tidy up tests - add a dummy native bridge to test with Bug: 18027433 Bug: 18097480 (cherry picked from commit f9d9e2a2) Change-Id: I9ce578949dbe522d5033465df7ca49fdd3aa3cbf
-
- 24 Oct, 2014 2 commits
-
-
Christopher Ferris authored
automerge: 5a69c1db -s ours * commit '5a69c1db': DO NOT MERGE Restore libcorkscrew unwinding.
-
Christopher Ferris authored
Change-Id: Ic6b18eeae43c2ef2256a0508ac60c1724385d3b0
-
- 22 Oct, 2014 1 commit
-
-
Narayan Kamath authored
* commit '80f227c1': Don't allow SUPPORTED_ABIs to be set by the native bridge.
-
- 21 Oct, 2014 2 commits
-
-
Narayan Kamath authored
* commit '66f0d93c': Don't allow SUPPORTED_ABIs to be set by the native bridge.
-
Narayan Kamath authored
SUPPORTED_ABIs is a prioritized list of all ABIs a device support, and must not vary depending on whether or not an app is emulated. bug: 18061712 Change-Id: I3ec3897d23e37c645b4d9d9e6e32aae9afff952c
-
- 20 Oct, 2014 5 commits
-
-
Arve Hjønnevåg authored
-
Adam Lesinski authored
* commit 'fe963bfd': MingW doesn't handle __attribute__((weak)) for Windows PE
-
Adam Lesinski authored
* commit 'a1ac84cd': MingW doesn't handle __attribute__((weak)) for Windows PE
-
Adam Lesinski authored
Windows PE format doesn't have the same support for weak symbols as ELF does. The symbol android_log_id_to_name was strangely omitted from the resulting Windows executable and the callsite where it was supposed to be called was relaced with a different symbol, which caused a crash in AAPT on Windows. This change works due to a careful set of #ifdefs that ensure only one definition of android_log_id_to_name is defined, but there are other uses of __attribute__((weak)) which should be inspected. Change-Id: I3b58076e31d9b28c5143773a170e9ffda9fa3815
-
Dmitriy Ivanov authored
-
- 16 Oct, 2014 8 commits
-
-
Arve Hjønnevåg authored
Change-Id: I761650d286b454f1fe01a585e7cd6ec769bfc527
-
Xavier Ducrohet authored
* commit '88b463a1': Fix windows specific behavior of FileMap
-
Xavier Ducrohet authored
* commit '1c77bf4c': Fix windows specific behavior of FileMap
-
Xavier Ducrohet authored
-
Xavier Ducrohet authored
The implementation of the FileMap destructor would close the file, only on Windows, which did not match the behavior on mac/linux. This is because calling munmap does not close the file descriptor. It must be closed separately, before or after munmap. On Windows, the file must also be closed manually, before or after closing the mappingFile. The change basically removes the closing file from the windows-specific part of the destructor, to make behavior more consistent on all platforms where the caller to FileMap is responsible for closing its own file (since FileMap receives an opened file). Change-Id: I5e3cfffbb870d5f3595802ccac57dbc1dbf1ce6e
-
Xavier Ducrohet authored
* commit 'dc7957d9': Fix toolchain issue for windows build of libziparchive.
-
Dmitriy Ivanov authored
Bug: 15345057 Bug: 15426766 (cherry picked from commit c9f9f35e) Change-Id: If54e1aeaa1e2abe061ac19666af4f4e058b81df2
-
Xavier Ducrohet authored
* commit 'cd1da4e0': Fix toolchain issue for windows build of libziparchive.
-