Increase kMaxStackDepth to 254

[alkondratenko@gmail.com: reduced value from 256 to 254]
This commit is contained in:
Kerrick Staley 2020-07-08 16:42:12 -07:00 committed by Aliaksey Kandratsenka
parent 1d9b8bb59d
commit bda3c82e11

View File

@ -101,7 +101,7 @@ class ProfileData {
int frequency_; // Sample frequency.
};
static const int kMaxStackDepth = 64; // Max stack depth stored in profile
static const int kMaxStackDepth = 254; // Max stack depth stored in profile
ProfileData();
~ProfileData();