mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-24 05:33:06 +00:00
Reintroduce the comment that was removed in f9ff603.
This commit is contained in:
@@ -110,8 +110,12 @@ arena_avail_comp(arena_chunk_map_t *a, arena_chunk_map_t *b)
|
|||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
if (!(a_mapelm & CHUNK_MAP_KEY))
|
if (!(a_mapelm & CHUNK_MAP_KEY))
|
||||||
ret = (a_mapelm > b_mapelm) - (a_mapelm < b_mapelm);
|
ret = (a_mapelm > b_mapelm) - (a_mapelm < b_mapelm);
|
||||||
else
|
else {
|
||||||
|
/*
|
||||||
|
* Treat keys as if they are lower than anything else.
|
||||||
|
*/
|
||||||
ret = -1;
|
ret = -1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return (ret);
|
return (ret);
|
||||||
|
|||||||
Reference in New Issue
Block a user