- 27 Oct, 2014 3 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
-
- 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 9 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.
-
Xavier Ducrohet authored
With mingw 4.8, the new default packed behavior is broken and makes zip archive fails due to unexpected misalignment in CentralDirectoryRecord. This patch uses -mno-ms-bitfields to revert to the old packed behavior. Change-Id: Ic977c841e330e19451db1d31ddb22e570a525062
-
- 15 Oct, 2014 3 commits
-
-
Dianne Hackborn authored
* commit '6d343432': Fix issue #18000467: processgroup truncates buffer
-
Dianne Hackborn authored
* commit '67f46cb0': Fix issue #18000467: processgroup truncates buffer
-
Dianne Hackborn authored
Change-Id: I3d98a4da9c47d83d25a11ff0ef94cfcab1feabea
-
- 14 Oct, 2014 3 commits
-
-
Dianne Hackborn authored
am e09bfb12: am 2c5e7e10: Maybe fix issue #17969789: Shamu FR: Runtime restart while scrolling Instagram * commit 'e09bfb12': Maybe fix issue #17969789: Shamu FR: Runtime restart while scrolling Instagram
-
Dianne Hackborn authored
* commit '2c5e7e10': Maybe fix issue #17969789: Shamu FR: Runtime restart while scrolling Instagram
-
Dianne Hackborn authored
It looks like there were a couple problems in the code: - It would not 0-terminate the string it read, to make sure we didn't see garbage at the end. - It didn't reduce buf_len as it processes data in the buffer, so if we need to read more we will increase the buffer length to be longer than the actual available data. Also put in some logs about every thing we kill, so we can see what is going on when debugging. And add a special check for us trying to kill pid 0 for any reason, since doing so seem to be terminal to the caller. Change-Id: I2fe29bfef08938b8a2eb182475c0705c14d8d84f
-
- 11 Oct, 2014 2 commits
-
-
Daniel Rosenberg authored
* commit 'b63aab58': newfs_msdos: Set sectors per fat once
-
Daniel Rosenberg authored
* commit '8218b6aa': newfs_msdos: Set sectors per fat once
-
- 10 Oct, 2014 1 commit
-
-
Daniel Rosenberg authored
There was an issue causing the fat size to shrink too small, causing a fsck check to fail. Bug: 17949028 Bug: 17761281 Change-Id: Id0207f2ab44e57ff81f5a53494b45344822a6495 Signed-off-by:
Daniel Rosenberg <drosen@google.com>
-
- 09 Oct, 2014 2 commits
-
-
Paul Lawrence authored
Change-Id: Ide7925e7ad328f0343d444d63ff72f1a26206d4c
-
Paul Lawrence authored
This reverts commit 152d2d42. Fixed build error, and also fixed memory leak spotted from warning. Bug: 17691572 Change-Id: I23b5ba537f7b557432041d4338b38b9be434e981
-
- 08 Oct, 2014 9 commits
-
-
Nick Kralevich authored
-
Nick Kralevich authored
Build is broken. system/core/fs_mgr/fs_mgr_verity.c: In function 'fs_mgr_setup_verity': system/core/fs_mgr/fs_mgr_verity.c:103:20: error: 'verity_table_signature' may be used uninitialized in this function [-Werror=maybe-uninitialized] if (!RSA_verify(key, ^ system/core/fs_mgr/fs_mgr_verity.c:374:11: note: 'verity_table_signature' was declared here char *verity_table_signature; ^ cc1: all warnings being treated as errors make: *** [out/target/product/minnow/obj/STATIC_LIBRARIES/libfs_mgr_intermediates/fs_mgr_verity.o] Error 1 make: *** Waiting for unfinished jobs.... This reverts commit d4cea0bc. Change-Id: I6862cc79ef9d944a2472b6fb2e46dae514cea8ce
-
Mark Salyzyn authored
* changes: logd: kill(0,0) issue logd: LogStatistics leak logd: Add control statistics enable/disable. logd: cleanup logd: auditd: report facility LOG_AUTH logd: auditd: kmsg priority
-
Paul Lawrence authored
-
Paul Lawrence authored
Bug: 17691572 Change-Id: I58f588f318e7952d06a41325337d946d7c007e31
-
Mark Salyzyn authored
- Recognize pid=0 as special case (kernel or pre-init sourced) and refrain from treating it in the general case. (cherry pick from commit df5aa61f) Bug: 17526159 Change-Id: I74796043ac34753c6dd10018719ebc0bcd94e012
-
Mark Salyzyn authored
- uid = -1 in subtract operation to match add (cherry pick from commit f48ea7c8) Bug: 15986335 Change-Id: I7d0b85b5334c5264fd04309cb78e0c9aec0ad261
-
Mark Salyzyn authored
- ro.build.type=user turn off statistics - ro.config.low_ram=true turn off statistics - logd.statistics override (cherry pick from commit f5fc5095) Bug: 17526159 Bug: 17526187 Change-Id: I74796043ac34753c6dd10018719ebc0bcd94e00f
-
Mark Salyzyn authored
- simplify access and control exposure to class list - indent - compile warning - Follow standard naming convention for variables and methods - merge common fragments - Side Effects: none (cherry pick from commit e72c6e43) Bug: 17526159 Change-Id: I74796043ac34753c6dd10018719ebc0bcd94e010
-