Basic variables support.

This commit is contained in:
Valentin Bartenev
2020-08-13 02:46:54 +03:00
parent 21ac95f17e
commit 93146616cf
19 changed files with 1087 additions and 145 deletions

View File

@@ -1059,3 +1059,17 @@ nxt_mp_cleanup(nxt_mp_t *mp, nxt_work_handler_t handler,
return NXT_OK;
}
void *
nxt_mp_lvlhsh_alloc(void *pool, size_t size)
{
return nxt_mp_align(pool, size, size);
}
void
nxt_mp_lvlhsh_free(void *pool, void *p)
{
nxt_mp_free(pool, p);
}