ソースを参照

Fix code reloading for Jiffy

As it turns out I did not understand the documenation for
load/upgrade/unload correctly. load/upgrade are called conditionally if
there's code in the VM for the NIF. Ie, no code means load is called,
where as if code exists, upgrade is called.

unload is called regardless once per load/unload. This means that
load/upgrade in Jiffy's case will each create a state object and unload
will free it each time. I was missing the fact that unload is called
every time and hence I don't need to clear the state in upgrade.
pull/29/head 0.5.2
Paul J. Davis 13年前
コミット
f71616198f
1個のファイルの変更0行の追加2行の削除
  1. +0
    -2
      c_src/jiffy.c

+ 0
- 2
c_src/jiffy.c ファイルの表示

@ -42,8 +42,6 @@ reload(ErlNifEnv* env, void** priv, ERL_NIF_TERM info)
static int
upgrade(ErlNifEnv* env, void** priv, void** old_priv, ERL_NIF_TERM info)
{
if(*old_priv != NULL)
enif_free(*old_priv);
return load(env, priv, info);
}

読み込み中…
キャンセル
保存