forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcaml_gc.js
53 lines (35 loc) · 889 Bytes
/
caml_gc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'use strict';
function caml_gc_counters(param) {
return [
0,
0,
0
];
}
function caml_gc_set(param) {
}
function caml_gc_minor(param) {
}
function caml_gc_major_slice(param) {
return 0;
}
function caml_gc_major(param) {
}
function caml_gc_full_major(param) {
}
function caml_gc_compaction(param) {
}
function caml_final_register(param, param$1) {
}
function caml_final_release(param) {
}
exports.caml_gc_counters = caml_gc_counters;
exports.caml_gc_set = caml_gc_set;
exports.caml_gc_minor = caml_gc_minor;
exports.caml_gc_major_slice = caml_gc_major_slice;
exports.caml_gc_major = caml_gc_major;
exports.caml_gc_full_major = caml_gc_full_major;
exports.caml_gc_compaction = caml_gc_compaction;
exports.caml_final_register = caml_final_register;
exports.caml_final_release = caml_final_release;
/* No side effect */