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.
24 lines
619 B
24 lines
619 B
#include <stdlib.h>
|
|
#include <node.h>
|
|
#include <v8.h>
|
|
|
|
void EnsureAllocation(const v8::FunctionCallbackInfo<v8::Value> &args) {
|
|
v8::Isolate* isolate = args.GetIsolate();
|
|
uintptr_t size = args[0]->IntegerValue();
|
|
v8::Local<v8::Boolean> success;
|
|
|
|
void* buffer = malloc(size);
|
|
if (buffer) {
|
|
success = v8::Boolean::New(isolate, true);
|
|
free(buffer);
|
|
} else {
|
|
success = v8::Boolean::New(isolate, false);
|
|
}
|
|
args.GetReturnValue().Set(success);
|
|
}
|
|
|
|
void init(v8::Local<v8::Object> exports) {
|
|
NODE_SET_METHOD(exports, "ensureAllocation", EnsureAllocation);
|
|
}
|
|
|
|
NODE_MODULE(NODE_GYP_MODULE_NAME, init)
|
|
|