Skip to content

Commit ffcbe75

Browse files
committed
Dummy implementations of some methods for V8 API (to satisfy the linker).
1 parent 6e9d603 commit ffcbe75

File tree

1 file changed

+12
-0
lines changed
  • graal-nodejs/deps/v8/src/graal

1 file changed

+12
-0
lines changed

graal-nodejs/deps/v8/src/graal/v8.cc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3430,6 +3430,14 @@ namespace v8 {
34303430
TRACE
34313431
}
34323432

3433+
void Isolate::RemoveNearHeapLimitCallback(NearHeapLimitCallback callback, size_t heap_limit) {
3434+
TRACE
3435+
}
3436+
3437+
void Isolate::AutomaticallyRestoreInitialHeapLimit(double threshold_percent) {
3438+
TRACE
3439+
}
3440+
34333441
void Isolate::RequestInterrupt(InterruptCallback callback, void* data) {
34343442
TRACE
34353443
}
@@ -3667,3 +3675,7 @@ namespace v8 {
36673675
void V8_Fatal(const char* format, ...) {
36683676
TRACE
36693677
}
3678+
3679+
void V8_Fatal(const char* file, int line, const char* format, ...) {
3680+
TRACE
3681+
}

0 commit comments

Comments
 (0)