Merge "Add a helpful error message if GetUnreachableMemory fails"
This commit is contained in:
commit
72ca50359e
1 changed files with 4 additions and 1 deletions
|
|
@ -502,7 +502,10 @@ std::string UnreachableMemoryInfo::ToString(bool log_contents) const {
|
|||
std::string GetUnreachableMemoryString(bool log_contents, size_t limit) {
|
||||
UnreachableMemoryInfo info;
|
||||
if (!GetUnreachableMemory(info, limit)) {
|
||||
return "Failed to get unreachable memory\n";
|
||||
return "Failed to get unreachable memory\n"
|
||||
"If you are trying to get unreachable memory from a system app\n"
|
||||
"(like com.android.systemui), disable selinux first using\n"
|
||||
"setenforce 0\n";
|
||||
}
|
||||
|
||||
return info.ToString(log_contents);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue