buffer: implement ffi stash
Buffer module now exposes ffi_stash_new() function which returns 2 functions take() and put(). FFI stash implements proper ownership of global heavy-to-create objects which can only be created via FFI. Such as structs, pointers, arrays. It should help to fix buffer's registers (buffer.reg1, buffer.reg2, buffer.reg_array), and other global FFI objects such as 'struct port_c' in schema.lua. The issue is that when these objects are global, they might be re-used right during usage in case Lua starts GC and invokes __gc handlers. Just like it happened with IBUF_SHARED and static_alloc(). Part of #5632
Please register or sign in to comment