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()
336336 return GC_collect_a_little ();
337337}
338338
339+ void mono_gc_start_incremental_collection ()
340+ {
341+ GC_start_incremental_collection ();
342+ }
343+
339344/**
340345 * mono_gc_max_generation:
341346 *
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ MONO_API MonoBoolean mono_gc_is_incremental (void);
125125MONO_API void mono_gc_set_incremental (MonoBoolean value );
126126MONO_API void mono_gc_finalize_notify (void );
127127MONO_API int mono_gc_invoke_finalizers (void );
128+ MONO_API void mono_gc_start_incremental_collection ();
128129/* heap walking is only valid in the pre-stop-world event callback */
129130MONO_API int mono_gc_walk_heap (int flags , MonoGCReferences callback , void * data );
130131
Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ mono_gc_collect (int generation)
6161{
6262}
6363
64+ void
65+ mono_gc_start_incremental_collection ()
66+ {
67+ }
68+
6469int
6570mono_gc_max_generation (void )
6671{
Original file line number Diff line number Diff line change @@ -2620,6 +2620,12 @@ mono_gc_collect (int generation)
26202620 MONO_EXIT_GC_UNSAFE ;
26212621}
26222622
2623+ void
2624+ mono_gc_start_incremental_collection ()
2625+ {
2626+
2627+ }
2628+
26232629int
26242630mono_gc_collection_count (int generation )
26252631{
You can’t perform that action at this time.
0 commit comments