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

Commit 2ff54244 authored by Orion Hodson's avatar Orion Hodson Committed by android-build-merger
Browse files

Merge "Add persist.zygote.core_dump property for coredumps" am: a36a69a9

am: 68b64b26

Change-Id: Ib69a3d22f969206a6fe8755f69efefce411b14c9
parents 37d00de3 68b64b26
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;