diff options
author | Jason Evans <jasone@canonware.com> | 2017-01-17 15:19:17 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-01-17 23:16:37 (GMT) |
commit | de5e1aff2a96afb18383667954740509538daa86 (patch) | |
tree | 39256e9f4e868893852c8c1202487aec3712ca2e /src/arena.c | |
parent | 8115f05b2675d5449af686ddecc0ae5d5fd23fc2 (diff) | |
download | jemalloc-de5e1aff2a96afb18383667954740509538daa86.zip jemalloc-de5e1aff2a96afb18383667954740509538daa86.tar.gz jemalloc-de5e1aff2a96afb18383667954740509538daa86.tar.bz2 |
Formatting/comment fixes.
Diffstat (limited to 'src/arena.c')
-rw-r--r-- | src/arena.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arena.c b/src/arena.c index 80af3f9..70d71fc 100644 --- a/src/arena.c +++ b/src/arena.c @@ -895,8 +895,8 @@ arena_destroy_retained(tsdn_t *tsdn, arena_t *arena) * own metadata structures, but if deallocation fails, that is the * application's decision/problem. In practice, retained extents are * leaked here if !config_munmap unless the application provided custom - * extent hooks, so best practice to either enable munmap (and avoid dss - * for arenas to be destroyed), or provide custom extent hooks that + * extent hooks, so best practice is to either enable munmap (and avoid + * dss for arenas to be destroyed), or provide custom extent hooks that * either unmap retained extents or track them for later use. */ for (i = 0; i < sizeof(arena->extents_retained)/sizeof(extent_heap_t); |