Graphical Remote Lua Debugger, a debugger for the lua programming language.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
316 B

/* see copyright notice in grldc.h */
#include "luajit_ex.h"
#ifdef LUA_VM_LUAJIT
#include "../../../luajit/src/lj_obj.h"
#include "../../../luajit/src/lj_state.h"
int lua_pushthread_ex(lua_State *L, lua_State* thread)
{
lua_pushthread( L );
setthreadV(L, L->top, thread);
return 1;
}
#endif