mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-29 22:48:05 +03:00
PAC: Move in decay rate setting.
This commit is contained in:
parent
6a2774719f
commit
471eb5913c
9 changed files with 126 additions and 149 deletions
|
|
@ -55,8 +55,8 @@ extent_sn_next(pac_t *pac) {
|
|||
|
||||
static inline bool
|
||||
extent_may_force_decay(pac_t *pac) {
|
||||
return !(pac_dirty_decay_ms_get(pac) == -1
|
||||
|| pac_muzzy_decay_ms_get(pac) == -1);
|
||||
return !(pac_decay_ms_get(pac, extent_state_dirty) == -1
|
||||
|| pac_decay_ms_get(pac, extent_state_muzzy) == -1);
|
||||
}
|
||||
|
||||
static bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue