diff options
author | Qi Wang <interwq@gwu.edu> | 2017-03-22 08:49:56 (GMT) |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2017-03-23 07:03:28 (GMT) |
commit | 362e356675b244fceebb5fe9e2585e77dd47189d (patch) | |
tree | 621601a1d21c6340c2a27b49b704a9162ab46a84 /include/jemalloc | |
parent | d3fde1c12459f43e653bb842269b082b5635ccc6 (diff) | |
download | jemalloc-362e356675b244fceebb5fe9e2585e77dd47189d.zip jemalloc-362e356675b244fceebb5fe9e2585e77dd47189d.tar.gz jemalloc-362e356675b244fceebb5fe9e2585e77dd47189d.tar.bz2 |
Profile per arena base mutex, instead of just a0.
Diffstat (limited to 'include/jemalloc')
-rw-r--r-- | include/jemalloc/internal/ctl_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/jemalloc/internal/ctl_types.h b/include/jemalloc/internal/ctl_types.h index 1b5c76f..065ccda 100644 --- a/include/jemalloc/internal/ctl_types.h +++ b/include/jemalloc/internal/ctl_types.h @@ -2,7 +2,6 @@ #define JEMALLOC_INTERNAL_CTL_TYPES_H #define GLOBAL_PROF_MUTEXES \ - OP(base) \ OP(ctl) \ OP(prof) @@ -21,6 +20,7 @@ typedef enum { OP(extents_retained) \ OP(decay_dirty) \ OP(decay_muzzy) \ + OP(base) \ OP(tcache_list) typedef enum { |