Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a36a69a9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add persist.zygote.core_dump property for coredumps"

parents 15152e7d 2b71ad0a
Loading
Loading
Loading
Loading
+11 −9
Original line number Diff line number Diff line
@@ -273,8 +273,9 @@ static void EnableDebugger() {
    }
  }

  // We don't want core dumps, though, so set the soft limit on core dump size
  // to 0 without changing the hard limit.
  // Set the core dump size to zero unless wanted (see also coredump_setup in build/envsetup.sh).
  if (!GetBoolProperty("persist.zygote.core_dump", false)) {
    // Set the soft limit on core dump size to 0 without changing the hard limit.
    rlimit rl;
    if (getrlimit(RLIMIT_CORE, &rl) == -1) {
      ALOGE("getrlimit(RLIMIT_CORE) failed");
@@ -285,6 +286,7 @@ static void EnableDebugger() {
      }
    }
  }
}

// The debug malloc library needs to know whether it's the zygote or a child.
extern "C" int gMallocLeakZygoteChild;