Frameworks/base: Shorten system property

Otherwise it's too long.

Bug: 26877591
Change-Id: I741186a9fbea6ee50df6cef58d528ec58662c772
This commit is contained in:
Andreas Gampe
2016-05-10 12:51:45 -07:00
parent 4691e24d0b
commit eff0639345

View File

@@ -557,7 +557,7 @@ public final class ActivityThread {
return;
}
try {
int bufferSize = SystemProperties.getInt("debug.traceview-buffer-size-in-mb", 8);
int bufferSize = SystemProperties.getInt("debug.traceview-buffer-size-mb", 8);
VMDebug.startMethodTracing(profileFile, profileFd.getFileDescriptor(),
bufferSize * 1024 * 1024, 0, samplingInterval != 0, samplingInterval);
profiling = true;