mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 04:40:00 -04:00
Remove .hi_called member of isc_mem_t structure
The .hi_called member was dead structure member and it hasn't been used
since the overmem callback has been removed in commit
14bdd21e0a.
This commit is contained in:
parent
d1427e9fa8
commit
560047307d
1 changed files with 0 additions and 2 deletions
|
|
@ -120,7 +120,6 @@ struct isc_mem {
|
|||
isc_refcount_t references;
|
||||
char *name;
|
||||
atomic_size_t inuse;
|
||||
atomic_bool hi_called;
|
||||
atomic_bool is_overmem;
|
||||
atomic_size_t hi_water;
|
||||
atomic_size_t lo_water;
|
||||
|
|
@ -428,7 +427,6 @@ mem_create(const char *name, isc_mem_t **ctxp, unsigned int debugging,
|
|||
atomic_init(&ctx->inuse, 0);
|
||||
atomic_init(&ctx->hi_water, 0);
|
||||
atomic_init(&ctx->lo_water, 0);
|
||||
atomic_init(&ctx->hi_called, false);
|
||||
atomic_init(&ctx->is_overmem, false);
|
||||
|
||||
ISC_LIST_INIT(ctx->pools);
|
||||
|
|
|
|||
Loading…
Reference in a new issue