mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
669 B
28 lines
669 B
8 years ago
|
#include "node.h"
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
using v8::FunctionCallbackInfo;
|
||
|
using v8::Local;
|
||
|
using v8::Object;
|
||
|
using v8::Value;
|
||
|
|
||
|
void GetExecutionAsyncId(const FunctionCallbackInfo<Value>& args) {
|
||
|
args.GetReturnValue().Set(
|
||
|
node::AsyncHooksGetExecutionAsyncId(args.GetIsolate()));
|
||
|
}
|
||
|
|
||
|
void GetTriggerAsyncId(const FunctionCallbackInfo<Value>& args) {
|
||
|
args.GetReturnValue().Set(
|
||
|
node::AsyncHooksGetTriggerAsyncId(args.GetIsolate()));
|
||
|
}
|
||
|
|
||
|
void Initialize(Local<Object> exports) {
|
||
|
NODE_SET_METHOD(exports, "getExecutionAsyncId", GetExecutionAsyncId);
|
||
|
NODE_SET_METHOD(exports, "getTriggerAsyncId", GetTriggerAsyncId);
|
||
|
}
|
||
|
|
||
|
} // namespace
|
||
|
|
||
|
NODE_MODULE(binding, Initialize)
|