lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Stefan Reich wrote:
> Can the C-call boundary problem be worked around in some way?

I believe it happens because your debug hook is implemented in Lua. The
call chain is therefore Lua -> C -> Lua (a call across the C API).
Implementing the debug hook in C will most likely solve the problem.

-- Gregory