You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to support Truffleruby on magnus, we need to support GC operations, which currently relies on cruby internals.
/// Informs that there are external memory usages, so the GC can run more/// often than it otherwise would if it was unaware of such allocations.fngc_adjust_memory_usage(&self,incr:isize);/// Informs the GC that `young` is a new reference to `old`, allowing the/// the old object to participate in generational GC.fngc_writebarrier(&self,old:VALUE,young:VALUE);/// Opts out of generational GC and write barrier protection.fngc_writebarrier_unprotect(&self,obj:VALUE);
The text was updated successfully, but these errors were encountered:
In order to support Truffleruby on magnus, we need to support GC operations, which currently relies on cruby internals.
The text was updated successfully, but these errors were encountered: