Skip to content
Snippets Groups Projects
  1. Dec 04, 2013
  2. Dec 03, 2013
  3. Dec 02, 2013
  4. Nov 29, 2013
  5. Nov 28, 2013
  6. Nov 27, 2013
  7. Nov 26, 2013
  8. Nov 25, 2013
  9. Nov 24, 2013
  10. Nov 23, 2013
  11. Nov 22, 2013
  12. Nov 21, 2013
    • Konstantin Osipov's avatar
      A fix and a test case for https://github.com/tarantool/tarantool/issues/119 · a73d6dc8
      Konstantin Osipov authored
      A dead fiber could get reused prematurely or garbage collected twice.
      
      This was because __gc could get invoked way after the fiber has
      finished and reused for a different coroutine.
      
      The fix is to always access fibers in Lua by fiber id.
      a73d6dc8
    • Konstantin Osipov's avatar
      A fix and a test case for gh-131 · 132cb94b
      Konstantin Osipov authored
      Fix a hang on box.fiber.resume() of an attached fiber which gets
      cancelled.
      When the child fiber got cancelled before detach, the parent
      never was woken up, and would hang forever.
      Wake up the parent, and, in the parent, do not try to access
      a dead fiber.
      132cb94b
Loading