aboutsummaryrefslogtreecommitdiff
path: root/ABOUT (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-02-27deep_test tweaksBenoit Germain3-13/+186
2022-02-21Make allocator threadsafe by default when running LuaJIT, because LuaJIT ↵Benoit Germain5-21/+25
allocator is not
2022-02-21use malloc/free for keeper control structure when compiling for LuaJITBenoit Germain1-6/+18
2022-02-21Update deep_test.vcxproj.userBenoit Germain1-10/+35
2022-02-21some fixes in deep_test vcproj for LuaJIT-2.1.0-beta3 testingBenoit Germain2-0/+85
2022-02-17NEVER use allocator obtained from lua_getallocf to allocate stuff manually ↵Benoit Germain6-28/+77
when compiling for LuaJIT
2022-02-08__lanesclone is now called only once with 3 parameters dest, source, size -> ↵Benoit Germain8-157/+142
BREAKS CUSTOM DEEP USERDATA API
2022-02-07Version bumpBenoit Germain3-5/+7
2022-02-07A Lane's Lua state uses the Universe-defined allocator by defaultBenoit Germain1-2/+3
2022-02-07removed explicit calls to malloc/freeBenoit Germain5-30/+46
Lane and linda userdata were allocated with malloc/free, preventing embedders from fully controlling memory operations. Now all internal Lanes allocations go through the master state alloc function.
2022-02-07Update deadlock.luaBenoit Germain1-0/+2
2022-02-07Fix rockspec deprecated github urlBenoit Germain1-1/+1
2022-02-07Changed all indentations to all whitespacesBenoit Germain20-6567/+6564
Tabs mess up alignment of stack contents comments, so I'm done with them.
2022-01-19Replace deprecated pthread_yield with sched_yieldSoundBot1-1/+1
Since glibc 2.34, pthread_yield is nonstandard and marked as deprecated. See: https://man7.org/linux/man-pages/man3/pthread_yield.3.html
2021-11-17Fix missing cancel.c in rockspecBenoit Germain1-1/+13
2021-09-22fix require() wrapper to return all values returned by original require()Benoit Germain6-151/+22
2021-07-08deep_test vcproj migrated to VS2019v3.15.1Benoit Germain3-24/+183
2021-07-08fix function transfer with lua_dump for Lua 5.4 failing for functions big ↵Benoit Germain5-16/+98
enough to necessitate a buffer reallocation
2021-06-28Update cancel.cBenoit Germain1-0/+1
2021-06-28Update lanes-3.15.0-0.rockspecv3.15.0Benoit Germain1-2/+2
2021-06-28fixed some testsBenoit Germain3-4/+6
2021-06-26fix stack overflow when transfering a clonable userdata referencing itself ↵Benoit Germain7-152/+245
through a uservalue
2021-06-24correctly transfer the uservalue of a deep userdataBenoit Germain17-422/+598
2021-06-24expand deeptest.luaBenoit Germain2-18/+20
2021-06-23updated deep userdata unit test to expose issue #189Benoit Germain2-9/+51
2021-06-23 __lanesclone now receives the original as light userdata the first time it ↵Benoit Germain4-17/+35
is called
2021-06-16changed lanes.threads() output so that several lanes with the same name ↵Benoit Germain5-49/+130
don't clobber each other in the result table In the original implementations, the debug name was used as key, which meant that several lanes using the same name would cause only the oldest non-collected one to be listed in the results. Now the result is an array of tuples.
2021-02-24Compat lua_setiuservalue fixed for Lua 5.1 and LuaJITvalid-ptr1-1/+6
2021-02-15Bug fix for Lua 5.1/LuaJIT: lua_getiuservalue must check if lua_getfenv ↵valid-ptr1-0/+14
returns global environment
2020-10-05NetBSD supportnia2-3/+15
This adds support for NetBSD's flavour of pthreads. There are minor differences in the declaration of the non-portable pthread functions, and sched_yield is provided instead of pthread_yield_np. This allows LuaLanes to build and the test suite to run on NetBSD.
2020-04-22Makefile detect MinGW 64 as well as MinGW 32Benoit Germain2-4/+4
2020-04-22fix THREAD_SET_AFFINITY always failingBenoit Germain1-2/+2