blob: 3e0ddfe9e3c59bede5e5e17fd6184d36fc1e8195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "node_api.h"
#include "uv.h"
#include "../../js-native-api/common.h"
static void cleanup(void* arg) {
printf("cleanup(%d)\n", *(int*)(arg));
}
static int secret = 42;
static int wrong_secret = 17;
static napi_value Init(napi_env env, napi_value exports) {
napi_add_env_cleanup_hook(env, cleanup, &wrong_secret);
napi_add_env_cleanup_hook(env, cleanup, &secret);
napi_remove_env_cleanup_hook(env, cleanup, &wrong_secret);
return NULL;
}
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
|