lua-users home
lua-l archive

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


>  >> so I'd somehow have to get Apache to call my debugger
> 
> I've been toying with the idea of writing a debugger entirely 
> as a self contained executable, but then packaging it as a 
> run time loadable library.
> 
> That way it could be loaded by a native application or by the 
> Lua script itself.

You may look at LuaPlus's (http://luaplus.org) Remote Lua Debugger for some
hints as to how to implement a TCP/IP based debugger that doesn't modify the
underlying Lua state being debugged.

Josh