mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
26 lines
625 B
C
26 lines
625 B
C
#ifndef _RR_V8_WEAKREF_
|
|
#define _RR_V8_WEAKREF_
|
|
|
|
#include <v8.h>
|
|
#include "ruby.h"
|
|
|
|
struct v8_weakref {
|
|
v8_weakref(VALUE object);
|
|
VALUE get();
|
|
void set(VALUE object);
|
|
void retain();
|
|
void release();
|
|
|
|
VALUE object_id;
|
|
v8::Persistent<v8::External> external;
|
|
};
|
|
|
|
void v8_weakref_dispose(v8::Persistent<v8::Value> value, void* weakref);
|
|
VALUE v8_weakref_finalize(VALUE self, VALUE object_id);
|
|
VALUE v8_weakref_objectspace();
|
|
VALUE v8_weakref_nil(VALUE nil, VALUE exception);
|
|
VALUE v8_weakref_id2ref(VALUE id);
|
|
|
|
extern "C" VALUE rb_proc_new(VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE);
|
|
|
|
#endif
|