aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* GCC compilation error fixv3.6.6Benoit Germain2013-10-021-4/+4
|
* Delete lanes-keeper.luaBenoit Germain2013-10-011-304/+0
|
* Create lanes-3.6.6-1.rockspecBenoit Germain2013-10-011-0/+66
|
* Update index.htmlBenoit Germain2013-10-011-1/+1
|
* Update CHANGESBenoit Germain2013-09-301-0/+3
|
* Fix crash when a module is a simple C function (issue #59)Benoit Germain2013-09-301-15/+34
|
* version 3.6.6Benoit Germain2013-09-276-86/+71
| | | | | | | | no longer call core.configure with dummy params when requiring lanes more than once (fixes potential multithreading issues with LuaJIT allocator) activated EnableCrashingOnCrashes() Win32 debug builds fixed some comments in code
* Reduce memory footprint, simplify module order setup in conjuction with ↵Benoit Germain2013-09-268-344/+338
| | | | | | | | | | | | Lanes, and send over native functions a bit faster as well * Lanes no longer has to internally require modules inside the keeper states because they no longer need a lookup database. the lookup name is stored as-is and actually converted in the destination state * optimisation: bypass cache when sending native functions over * removed all the KEEPER_MODEL_LUA code, as it can no longer work anyway
* Create lanes-3.6.4-1.rockspecv3.6.4Benoit Germain2013-09-241-0/+66
|
* Update index.htmlBenoit Germain2013-09-241-1/+1
|
* Update CHANGESBenoit Germain2013-09-241-0/+4
|
* Fix application hang at shutdownBenoit Germain2013-09-241-2/+2
|
* version 3.6.3v3.6.3Benoit Germain2013-08-1310-125/+281
| | | | | | | | * lane:cancel(<negative-timeout>) only causes cancel_test() to return true but won't interrupt execution of the lane during linda operations * more explicit errors when trying to transfer unknown source functions (with new configure option verbose_errors) * default options wrap allocator around a mutex when run by LuaJIT
* wrap LuaJIT memory allocator in a critical section by defaultBenoit Germain2013-07-221-1/+10
|
* Updated rockspec for v3.6.2v3.6.2Benoit Germain2013-07-201-2/+2
|
* Ditch PulseEvent usage on WIN32 buildsBenoit Germain2013-07-203-70/+100
|
* Update READMEBenoit Germain2013-07-201-1/+9
|
* version 3.6.2Benoit Germain2013-05-206-22/+99
| | | | | * WIN32 builds use condition variables instead of PulseEvent() when available. * first steps toward fixing make-vc.cmd
* Added a sample snippet for set_finalizer()Benoit Germain2013-05-201-0/+17
|
* remove 2 weird characters in commentsBenoit Germain2013-05-201-2/+2
|
* Merge pull request #52 from nrnrnr/masterBenoit Germain2013-04-202-0/+13
|\ | | | | Description of manual installation process
| * instructions for manual installationNorman Ramsey2013-04-181-0/+11
| | | | | | | | closes #51
| * ignore .o files and derived lanes directoryNorman Ramsey2013-04-181-0/+2
|/
* Building Lanes doesn't need lua.exeBenoit Germain2013-04-081-7/+3
|
* Fix MinGW compiler warnings-as-errorsBenoit Germain2013-04-081-6/+7
|
* Update index.htmlBenoit Germain2013-04-051-5/+3
|
* Update CHANGESBenoit Germain2013-04-051-0/+4
|
* Bumped version to 3.6.1Benoit Germain2013-04-051-1/+1
|
* Removed LUA_COMPAT_ALL-less Lua5.2 restrictionBenoit Germain2013-04-051-41/+57
|
* Added lua_lessthan to 5.2 build retrocompatibilityBenoit Germain2013-04-051-0/+1
|
* Fix issue #50Benoit Germain2013-04-051-2/+2
| | | When building with Visual Studio, a function call with too many parameters warrants only a warning...
* updated rockspec for version 3.6.0v3.6.0Benoit Germain2013-03-141-2/+2
|
* version 3.6.0Benoit Germain2013-03-143-14/+20
| | | | | * protect_allocator is an API change -> version bump * bugfix: allocator protection should be done once per primary Lua state, not once only the first time ever Lanes is required
* version 3.5.2Benoit Germain2013-03-134-231/+275
| | | | | | * stricter validation of with_timers config option: validator was accepting any non-boolean value * new configuration option protect_allocator for VMs with thread unsafe allocators (such as LuaJIT) * removed some obsolete bits of dead code
* Fixed a little APICHECK issueBenoit Germain2013-03-121-2/+3
|
* Update lanes.luaBenoit Germain2013-03-121-2/+6
| | | fix validation of with_timers config option: validator was accepting any non-boolean value
* Update READMEBenoit Germain2013-02-201-1/+5
| | | improve on issue #46.
* Fix bad assertion in linda dump utilityBenoit Germain2013-02-141-2/+8
|
* version 3.5.1v3.5.1Benoit Germain2013-02-1311-67/+263
| | | | | | | * new lanes.h header and API call luaopen_lanes_embedded() for embedders * "lanes.core" is an acceptable library in the generator libs argument * library "*" wildcard also opens lanes.core * tweaked code for Xbox 360 build
* Fix issue #45Benoit Germain2013-02-051-1/+1
|
* foward on_state_create error to main state if anyBenoit Germain2013-02-011-1/+5
|
* version 3.5.0Benoit Germain2013-01-3013-278/+421
| | | | | | | | | | | | | | * new: API lanes.require(), use it instead of regular require() for modules that export C functions you need to send over. * new: lanes no longer require 'lanes.core' by default in every created state. Use {required={"lanes.core"}} if you need to transfer lanes functions. * internal: because of the above, reworked the timer implementation to remove upvalue-dependency on lanes.core * new: API lanes.timer_lane, to be able to operate on timer lane if need be * improved: if a module is a full userdata, scan its metatable for function database population * improved: on_state_create can be a Lua function * changed: on_state_create is called after the base libraries are loaded * package[loaders|searchers] is no longer transfered as function naming depends on slot order * internal: changed separator from '.' to '/' in lookup databases to be able to distinguish search levels and dot coming from module names * added some mode debug spew * updated tests to reflect the above changes
* * More detailed DEBUG_SPEW logsBenoit Germain2013-01-286-338/+456
| | | | * A bit of code cosmetics
* version 3.4.4v3.4.4Benoit Germain2013-01-267-109/+180
| | | | | | | | * bugfix: take into account the fact that "coroutine" is no longer part of base library in Lua 5.2 * bugfix: if "bit32" was listed in the libraries, it wouldn't open (library list parsing failing on digits) * bugfix: Use luaL_requiref() to open standard libraries in Lua 5.2 as we should * bugfix: any Lua state created by Lanes reuses the allocator function of the originating state * bugfix: don't call on_state_create() while GC is suspended during lua state initialization
* version 3.4.3v3.4.3Benoit Germain2013-01-2411-314/+489
| | | | | | | | | | | * raise an error if lane generator libs specification contains a lib more than once * bit32 is a valid lib name in the libs specification (silently ignored by the Lua 5.1 build) * improved lanes.nameof to search inside table- and userdata- metatables for an object's name * fixed an unwarranted error when trying to discover a function name upon a failed transfer * contents of package.[path,cpath,preload,loaders|searchers] are pulled *only once* inside keeper states at initialisation * Lua function upvalues equal to the global environment aren't copied by value, but bound to the destination's global environment especially useful for Lua 5.2 _ENV * fixed loading of base libraries that didn't create the global tables when built for Lua 5.2
* rockspec for version 3.4.2v3.4.2Benoit Germain2013-01-141-2/+2
|
* new unit test for recursive upvalues transferBenoit Germain2013-01-101-0/+4
|
* Create rupval.luaBenoit Germain2013-01-101-0/+25
|
* Update CHANGESBenoit Germain2013-01-101-0/+5
|
* Update docs/index.htmlBenoit Germain2013-01-101-1/+4
|