From: <jc...@gm...> - 2016-01-18 14:35:41
|
In case anyone else is getting strange crashes, I've found a work-around. I just disable the GC during introspection. All introspection code is wrapped in: gc_was_enabled = GC.disable begin result = do_some_introspection ensure if gc_was_enabled GC.enable end end and my crashes have gone away. Phew! John |