diff options
author | csilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50> | 2010-05-07 21:53:24 +0000 |
---|---|---|
committer | csilvers <csilvers@6b5cf1ce-ec42-a296-1ba9-69fdba395a50> | 2010-05-07 21:53:24 +0000 |
commit | d8c02761689ba909f474b85618f99ac6dfc9a168 (patch) | |
tree | 29963257de8de512aec28ad6340b1e9e21cef765 /src/common.h | |
parent | b0fe220d503eb23830e622939c2e14f084392d1e (diff) | |
download | gperftools-d8c02761689ba909f474b85618f99ac6dfc9a168.tar.gz |
* Update docs for heap-profiler fns (csilvers)
* In pprof, accept URLs without ports but with http:// (rsc)
* Refactor sizeclass handling in tcmalloc (bmaurer)
* Always log failed calls to FindAllocDetails (mec)
* Clarify comments for ProfilerStart* (malcolmr)
* Add #include guards to stacktrace_win32-inl.h (glider)
* Add ANNOTATE_ENABLE_RACE_DETECTION(enable) (kcc)
* Make a contentful NEWS file (csilvers)
* Fix addr2line --help (which pprof relies on) for windows (csilvers)
* Fixes a bug in tcmalloc's TLS callback on windows -static (wtc)
git-svn-id: http://gperftools.googlecode.com/svn/trunk@94 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h index 92c582f..b0278eb 100644 --- a/src/common.h +++ b/src/common.h @@ -62,6 +62,7 @@ static const size_t kPageSize = 1 << kPageShift; static const size_t kMaxSize = 8u * kPageSize; static const size_t kAlignment = 8; static const size_t kNumClasses = 61; +static const size_t kLargeSizeClass = 0; // Maximum length we allow a per-thread free-list to have before we // move objects from it into the corresponding central free-list. We |