diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/BLua.cc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 05c60b7..c1c7f44 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -36,28 +36,6 @@ void LuaPrinter::puts(const char * msg) { LuaPrinter default_lua_printer; -extern "C" { - void do_lua_lock(lua_State * __L) { - Lua * L; - try { - L = Lua::find(__L); - } catch (GeneralException e) { - return; - } - L->lock(); - } - - void do_lua_unlock(lua_State * __L) { - Lua * L; - try { - L = Lua::find(__L); - } catch (GeneralException e) { - return; - } - L->unlock(); - } -} - class LuaStatics : public Base { public: static const char * getF(lua_State *, void *, size_t *); @@ -1298,12 +1276,6 @@ void Lua::do_break() { // lua_break(L); } -void Lua::lock() { -} - -void Lua::unlock() { -} - void Lua::openlib(const String & libname, const luaL_reg *l, int nup) { luaL_openlib(L, libname.to_charp(), l, nup); } |