Skip to content
Snippets Groups Projects
  1. Dec 03, 2016
  2. Feb 06, 2016
  3. Aug 27, 2015
  4. Aug 17, 2015
  5. Aug 03, 2015
  6. Aug 02, 2015
  7. Jul 21, 2015
  8. Jul 07, 2015
  9. Jul 06, 2015
  10. Jun 25, 2015
  11. Jun 24, 2015
  12. Jun 14, 2015
  13. Jun 13, 2015
  14. Jun 12, 2015
  15. Jun 08, 2015
  16. Feb 20, 2015
  17. Feb 19, 2015
    • Lars Kanis's avatar
    • Lars Kanis's avatar
      Discard borrowed object wrappers after method calls into Ruby. · 54a11707
      Lars Kanis authored
      This solves crashes of kind:
      	[BUG] rb_gc_mark(): 0x00000003f54af8 is T_ZOMBIE
      
      All parameters to Ruby event blocks or overloaded methods are converted to
      proper Ruby classes or wrapped by appropriate wrapper classes for borrowed
      objects. The wrapper classes are registered, to keep the connection between
      C-pointer (the borrowed object) and the wrapping Ruby object. This connection
      is canceled either when the borrowed object is destroyed or the Ruby wrapper
      is free'd. If neither of them happens, the wrapper object is re-used for the
      next call.
      
      This worked good with Ruby-1.8, which has one big mark and sweep run.
      Ruby-2.2 introduced incremental GC and has several mark and sweep runs, so
      that marks and sweeps are quite independent. Therefor we re-used objects,
      that are already maked for sweeping (so called T_ZOMBIE).
      
      This patch releases the connection between borrowed object and it's wrapper
      object after each call into Ruby code. Therefore the wrapper object isn't
      re-used, but a new one is created for each param to each call. The wrapper
      objects are later free'd by the GC. This patch could have a negative
      performance impact.
      54a11707
  18. Feb 18, 2015
  19. Feb 17, 2015
  20. Feb 14, 2015
Loading