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

Commit 002ddf49 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Purge unused native memory before Zygote fork events" am: 0b242c8d am: c1fa69a2

Change-Id: I9f7f554ae0936873a8e2b365be092fe3ac6146bb
parents f427fac8 c1fa69a2
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1000,6 +1000,13 @@ static pid_t ForkCommon(JNIEnv* env, bool is_system_server,

  android_fdsan_error_level fdsan_error_level = android_fdsan_get_error_level();

  // Purge unused native memory in an attempt to reduce the amount of false
  // sharing with the child process.  By reducing the size of the libc_malloc
  // region shared with the child process we reduce the number of pages that
  // transition to the private-dirty state when malloc adjusts the meta-data
  // on each of the pages it is managing after the fork.
  mallopt(M_PURGE, 0);

  pid_t pid = fork();

  if (pid == 0) {