mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-06-15 16:35:51 +03:00
Style and spelling fixes.
This commit is contained in:
parent
59cd80e6c6
commit
e12eaf93dc
20 changed files with 36 additions and 40 deletions
|
|
@ -2,7 +2,7 @@
|
|||
#include "jemalloc/internal/jemalloc_internal.h"
|
||||
|
||||
/*
|
||||
* quarantine pointers close to NULL are used to encode state information that
|
||||
* Quarantine pointers close to NULL are used to encode state information that
|
||||
* is used for cleaning up during thread shutdown.
|
||||
*/
|
||||
#define QUARANTINE_STATE_REINCARNATED ((quarantine_t *)(uintptr_t)1)
|
||||
|
|
@ -49,7 +49,7 @@ quarantine_alloc_hook_work(tsd_t *tsd)
|
|||
quarantine = quarantine_init(tsd, LG_MAXOBJS_INIT);
|
||||
/*
|
||||
* Check again whether quarantine has been initialized, because
|
||||
* qurantine_init() may have triggered recursive initialization.
|
||||
* quarantine_init() may have triggered recursive initialization.
|
||||
*/
|
||||
if (tsd_quarantine_get(tsd) == NULL)
|
||||
tsd_quarantine_set(tsd, quarantine);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue