File tree Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Expand file tree Collapse file tree 4 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -336,6 +336,11 @@ mono_gc_collect_a_little()
336
336
return GC_collect_a_little ();
337
337
}
338
338
339
+ void mono_gc_start_incremental_collection ()
340
+ {
341
+ GC_start_incremental_collection ();
342
+ }
343
+
339
344
/**
340
345
* mono_gc_max_generation:
341
346
*
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ MONO_API MonoBoolean mono_gc_is_incremental (void);
125
125
MONO_API void mono_gc_set_incremental (MonoBoolean value );
126
126
MONO_API void mono_gc_finalize_notify (void );
127
127
MONO_API int mono_gc_invoke_finalizers (void );
128
+ MONO_API void mono_gc_start_incremental_collection ();
128
129
/* heap walking is only valid in the pre-stop-world event callback */
129
130
MONO_API int mono_gc_walk_heap (int flags , MonoGCReferences callback , void * data );
130
131
Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ mono_gc_collect (int generation)
61
61
{
62
62
}
63
63
64
+ void
65
+ mono_gc_start_incremental_collection ()
66
+ {
67
+ }
68
+
64
69
int
65
70
mono_gc_max_generation (void )
66
71
{
Original file line number Diff line number Diff line change @@ -2620,6 +2620,12 @@ mono_gc_collect (int generation)
2620
2620
MONO_EXIT_GC_UNSAFE ;
2621
2621
}
2622
2622
2623
+ void
2624
+ mono_gc_start_incremental_collection ()
2625
+ {
2626
+
2627
+ }
2628
+
2623
2629
int
2624
2630
mono_gc_collection_count (int generation )
2625
2631
{
You can’t perform that action at this time.
0 commit comments