<div dir="ltr">Hello,<div class="gmail_extra"><br><div class="gmail_quote">On Sat, Nov 18, 2017 at 8:20 PM, Ilya Khaprov <span dir="ltr"><<a href="mailto:ilya.khaprov@publitechs.com" target="_blank">ilya.khaprov@publitechs.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">





<div lang="EN-US">
<div class="m_3850379962211606726WordSection1">
<p class="MsoNormal">I copy (enif_make_copy) an eterm to private NifEnv inside Nif.<br></p>
<p class="MsoNormal">Later I want to remove that eterm from the NifEnv (actually I want to free memory, but I guess this means removing from NifEnv’s heap).
</p>
<p class="MsoNormal">How to do this? I know about enif_free_env, but this function clear entire env.</p></div></div></blockquote><div><br></div><div>It is not possible to free an individual term from a nif environment. If you want to have that kind of granularity, you have to create one environment per term that you want to individually collect. If the allocation cost of a new env is too large for your application, you could pool env's and use enif_clear_env to re-cycle env's into the pool.</div><div><br></div><div>Lukas</div></div></div></div>