summaryrefslogtreecommitdiffstats
path: root/include/jemalloc
diff options
context:
space:
mode:
authorQinfan Wu <wqfish@fb.com>2014-07-22 03:00:14 (GMT)
committerQinfan Wu <wqfish@fb.com>2014-08-12 16:50:01 (GMT)
commite8a2fd83a2ddc082fcd4e49373ea05bd79213c71 (patch)
tree45a18e0fbe5c393d7c6688cc1cc11f231c5192f3 /include/jemalloc
parent90737fcda150a5da3f4db1c3144ea24eed8de55b (diff)
downloadjemalloc-e8a2fd83a2ddc082fcd4e49373ea05bd79213c71.zip
jemalloc-e8a2fd83a2ddc082fcd4e49373ea05bd79213c71.tar.gz
jemalloc-e8a2fd83a2ddc082fcd4e49373ea05bd79213c71.tar.bz2
arena->npurgatory is no longer needed since we drop arena's lock
after stashing all the purgeable runs.
Diffstat (limited to 'include/jemalloc')
-rw-r--r--include/jemalloc/internal/arena.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/jemalloc/internal/arena.h b/include/jemalloc/internal/arena.h
index f87dfe4..1e2e987 100644
--- a/include/jemalloc/internal/arena.h
+++ b/include/jemalloc/internal/arena.h
@@ -344,14 +344,6 @@ struct arena_s {
size_t ndirty;
/*
- * Approximate number of pages being purged. It is possible for
- * multiple threads to purge dirty pages concurrently, and they use
- * npurgatory to indicate the total number of pages all threads are
- * attempting to purge.
- */
- size_t npurgatory;
-
- /*
* Size/address-ordered trees of this arena's available runs. The trees
* are used for first-best-fit run allocation.
*/