diff options
| author | Matt Valentine-House <matt@eightbitraptor.com> | 2026-01-22 23:01:41 +0000 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2026-02-12 12:51:50 +0000 |
| commit | c251767fbeacc95963a1c68feed976e8d492d3fc (patch) | |
| tree | 86a85b60007f882cb5c8bedf8d5f8a0fb6c9b19a | |
| parent | 70cf85af9915b0a1d3e7ab3459e9e7ab685e4de1 (diff) | |
[ruby/mmtk] Implement rb_gc_impl_during_gc_p
https://github.com/ruby/mmtk/commit/039fa648fe
| -rw-r--r-- | gc/mmtk/mmtk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gc/mmtk/mmtk.c b/gc/mmtk/mmtk.c index d5cfda1be9..4832916ce6 100644 --- a/gc/mmtk/mmtk.c +++ b/gc/mmtk/mmtk.c @@ -689,8 +689,8 @@ rb_gc_impl_start(void *objspace_ptr, bool full_mark, bool immediate_mark, bool i bool rb_gc_impl_during_gc_p(void *objspace_ptr) { - // TODO - return false; + struct objspace *objspace = objspace_ptr; + return objspace->world_stopped; } static void |
