summaryrefslogtreecommitdiff
path: root/src/BLua.cc
AgeCommit message (Collapse)Author
2014-05-28Use Unicode under windows.Nicolas "Pixel" Noble
2014-05-25Cleaning a few more warnings out.Nicolas "Pixel" Noble
2014-05-25Creating a Balau project file.Nicolas "Pixel" Noble
2014-05-25Fixing a few warnings and errors.Nicolas "Pixel" Noble
2013-08-12Fixing crash; entry.name can be NULL and means 'new'.Nicolas "Pixel" Noble
2013-08-12Adding LuaBigInt and a few more things.Nicolas "Pixel" Noble
2013-08-09Removing rsa.lua. This is just too buggy.Nicolas Noble
2013-08-09Making our print function a bit smarter.Nicolas "Pixel" Noble
2013-08-08Adding the rsa.lua code to lcrypt.Nicolas "Pixel" Noble
2013-08-08Adding libtommath, libtomcrypt and lcrypt, mainly for the bignum support.Nicolas "Pixel" Noble
2013-08-07Deferring object collection in Lua because yielding from the garbage ↵Nicolas Noble
collector is a very bad idea.
2013-08-07The close operation is actually async too. Meaning that the destroy ↵Nicolas "Pixel" Noble
operation probably should become async...
2013-08-06Using shared_ptr instead of rolling our own system, making it more pretty.Nicolas "Pixel" Noble
2013-08-05Greatly simplifying the LuaYield mechanism so to avoid double-recursive ↵Nicolas Noble
calls in resume().
2013-08-05Improving the output of GeneralExceptions in Lua; also you can't call ↵Nicolas "Pixel" Noble
lua_error on a yielded co-routine.
2013-08-05The lua_load operation is a bit complicated, and can't throw EAgain.Nicolas "Pixel" Noble
2013-08-05Let's be a bit more explicit about the effects of not catching EAgain.Nicolas "Pixel" Noble
2013-08-05Relaxing the simple context rules a bit.Nicolas "Pixel" Noble
2013-08-02Lua's dumpvars is now properly yielding if needed.Nicolas Noble
2013-08-02Heavily revamped the C-to-Lua yielding mechanism. Now more generic.Nicolas Noble
2013-08-02Forgot to pass on the timeout event here.Nicolas Noble
2013-07-31Changing objname to type in the embedded data of an object.Nicolas Noble
2013-07-31Even further changes in the Lua class binding system. Simplifying the ↵Nicolas Noble
callback system by using the Lua's C closure mechanism.
2013-07-31Added a few forgotten references.Nicolas "Pixel" Noble
2013-07-30Changing things a bit in the Lua binding system. Now pushing a class ↵Nicolas Noble
template means pushing a table by its name, and the constructor is implicit in it.
2013-07-25Lua now properly yields when an operation throws EAgain.Nicolas "Pixel" Noble
2013-07-25*cough* small issue in the Lua code (plus LuaJIT sometime can be buggersome).Nicolas "Pixel" Noble
2013-07-25Cleaning up the Lua code a bit.Nicolas "Pixel" Noble
2013-07-24Better exception handling support for Lua.Nicolas Noble
2012-09-09Got LuaObjects working again, and in a quite better shape I would add.Nicolas "Pixel" Noble
2012-09-06Fixing LuaObject's destructor.Nicolas "Pixel" Noble
2012-09-05Better error handling on luaexeccells, so they can trigger their main ↵Nicolas "Pixel" Noble
co-routines. Also better display of said errors.
2012-03-29Working / cleaning a bit the Lua class.Pixel
2011-12-04Reworked some things in the architecture, mainly exceptions and asserts.Pixel
-) Removed Assert() -) Added AAssert(), IAssert(), RAssert(), TAssert() and Failure() -) Reworked all asserts in the code, and added meaningful messages to them. -) Changed the way the startup code is generated; BALAU_STARTUP is no longer necessary.
2011-10-26Adding Lua.Pixel