Skip to content
Snippets Groups Projects
  1. Feb 14, 2014
  2. Feb 12, 2014
    • Roman Tsisyk's avatar
      Explicitly use thread-local buffer for C++ exceptions · 250d031a
      Roman Tsisyk authored
      This patch explicitly saves Exception to a thread-local variable inside
      struct cord on tnt_raise(). This variable can be used to safetly
      re-throw last exception from any place (not only from catch() block).
      This technique requires exception to be thrown and catched by pointers.
      tnt_raise macros was rewritten and all 'catch (Exception &)' blocks were
      substituted with 'catch (Exception *e)'.
      
      This patch also adds a new feature to box.raise() function.
      When called without arguments box.raise() re-throws last exception (if
      any).
      
      These changes needed to implement proper handlings of exception for FFI
      calls.
      250d031a
  3. Feb 11, 2014
  4. Feb 10, 2014
  5. Feb 08, 2014
  6. Feb 07, 2014
  7. Feb 06, 2014
  8. Feb 05, 2014
  9. Feb 04, 2014
  10. Feb 03, 2014
    • Konstantin Osipov's avatar
      Implement #! (aka hashbang, aka shebang) (gh-184) · 50b2a848
      Konstantin Osipov authored
      Allow start of tarnatool_box in #! form.
      
      Remove script_dir.
      
      Make all configuration options optional (primary_port
      was the last one required).
      Make the configuration file itself optional.
      
      If no watcher is started for the event loop, either based on
      the config file settings, or in the #! script, do not start the event loop.
      
      Update the test runner to take the new changes into account.
      
      Fix a bug in symbols_load() when no symbols
      could be loaded when path to executable was neither
      relative nor absolute (but based on PATH).
      
      Fix a bug with ignored return value of slab_arena_create()
      in tuple.cc
      50b2a848
    • Roman Tsisyk's avatar
      Optimize Lua/C bindings for box · 052c147b
      Roman Tsisyk authored
      This patch add specialized versions of box.process for select, insert,
      replace, update and delete requests. This optimization reduces the
      number of Lua <-> C switches during request processing. New functions
      create struct request directly without allocating temporary buffer for
      entire request body.
      052c147b
  11. Jan 31, 2014
Loading