Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ static napi_value StartThread(napi_env env, napi_callback_info info) {
}

// Free the per-addon-instance data.
static void addon_getting_unloaded(napi_env env, void* data, void* hint) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

napi_env should be the preferred type. Would you mind elaborating on the errors to be fixed?

static void addon_getting_unloaded(const struct napi_env__ *env, void* data, void* hint) {
AddonData* addon_data = (AddonData*)data;
assert(addon_data->work == NULL &&
"No work item in progress at module unload");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static napi_value GetPrime(napi_env env, napi_callback_info info) {
return prime_property;
}

static void addon_is_unloading(napi_env env, void* data, void* hint) {
static void addon_is_unloading(const struct napi_env__ *env, void* data, void* hint) {
AddonData* addon_data = (AddonData*)data;
uv_mutex_destroy(&(addon_data->check_status_mutex));
CHECK(napi_delete_reference(env,
Expand Down