Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
5 days | Fix STACK_GROW under Clang | Karol Łacina | 1 | -1/+1 | |
8 days | Fix rockspec (oops)v3.17.1 | Benoit Germain | 1 | -2/+2 | |
9 days | Stamp documentation | Benoit Germain | 1 | -1/+1 | |
9 days | Bump minor version | Benoit Germain | 3 | -1/+2 | |
9 days | Remove unused variable to fix a compilation warning | Benoit Germain | 2 | -6/+3 | |
2024-04-29 | remove uintptr_t againv3.17.0 | Benoit Germain | 6 | -16/+20 | |
2024-04-29 | expose nil sentinel as lanes.null | Benoit Germain | 1 | -0/+3 | |
2024-04-15 | fix keeper state stack accumulating garbage in case of transfer errors | Benoit Germain | 5 | -2/+12 | |
2024-04-11 | Bring all interesting fixes from the C++ implementation back into the C ↵ | Benoit Germain | 29 | -615/+880 | |
implementation | |||||
2024-03-19 | fix small internal issue with when hitting timeout on thread kill during ↵ | Benoit Germain | 2 | -2/+5 | |
thread_cancel() in pthread implementation | |||||
2024-02-23 | Fixed documentation regarding "standard modules" | Benoit Germain | 1 | -22/+73 | |
2024-02-22 | Better CHANGE commentv3.16.3 | Benoit Germain | 1 | -1/+1 | |
2024-02-22 | Detect runtime LuaJIT/PUC-Lua mismatch | Benoit Germain | 5 | -10/+25 | |
2024-02-22 | Bump deep_test.vcxproj to VS2022 | Benoit Germain | 1 | -18/+18 | |
2024-01-23 | src/threading.h: fix compilation on musl | Conrad Kostecki | 1 | -1/+5 | |
Signed-off-by: Conrad Kostecki <conikost@gentoo.org> | |||||
2023-08-17 | Finalize version 3.16.2v3.16.2 | Benoit Germain | 5 | -5/+9 | |
2023-08-17 | Prevent crash on linux as non-root | Anssi Mäkinen | 1 | -4/+4 | |
Fixes #218 | |||||
2023-08-16 | Minor tweaksv3.16.1 | Benoit Germain | 8 | -16/+13 | |
2023-08-09 | new .internal_allocator configuration IUNTESTED) | Benoit Germain | 13 | -62/+83 | |
new configuration option .internal_allocator to help LuaJIT users. THIS IS YET UNTESTED, USE AT YOUR OWN RISKS. | |||||
2023-07-28 | tweaks to linux thread priority management | Benoit Germain | 4 | -102/+122 | |
2023-07-28 | Update comparison.html | Benoit Germain | 1 | -2/+2 | |
2022-03-09 | moonjit support | Benoit Germain | 12 | -75/+177 | |
2022-03-03 | Update lanes-3.16.0-0.rockspec | jlainema | 1 | -1/+1 | |
does not install from the rockspec without using git for url format | |||||
2022-03-01 | Bug in __lanesclone with 3 parameters mechanism fixed (index was wrong in ↵ | valid-ptr | 1 | -4/+4 | |
inter_copy_function); Some comments improved | |||||
2022-02-27 | deep_test tweaks | Benoit Germain | 3 | -13/+186 | |
2022-02-21 | Make allocator threadsafe by default when running LuaJIT, because LuaJIT ↵ | Benoit Germain | 5 | -21/+25 | |
allocator is not | |||||
2022-02-21 | use malloc/free for keeper control structure when compiling for LuaJIT | Benoit Germain | 1 | -6/+18 | |
2022-02-21 | Update deep_test.vcxproj.user | Benoit Germain | 1 | -10/+35 | |
2022-02-21 | some fixes in deep_test vcproj for LuaJIT-2.1.0-beta3 testing | Benoit Germain | 2 | -0/+85 | |
2022-02-17 | NEVER use allocator obtained from lua_getallocf to allocate stuff manually ↵ | Benoit Germain | 6 | -28/+77 | |
when compiling for LuaJIT | |||||
2022-02-08 | __lanesclone is now called only once with 3 parameters dest, source, size -> ↵ | Benoit Germain | 8 | -157/+142 | |
BREAKS CUSTOM DEEP USERDATA API | |||||
2022-02-07 | Version bump | Benoit Germain | 3 | -5/+7 | |
2022-02-07 | A Lane's Lua state uses the Universe-defined allocator by default | Benoit Germain | 1 | -2/+3 | |
2022-02-07 | removed explicit calls to malloc/free | Benoit Germain | 5 | -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-07 | Update deadlock.lua | Benoit Germain | 1 | -0/+2 | |
2022-02-07 | Fix rockspec deprecated github url | Benoit Germain | 1 | -1/+1 | |
2022-02-07 | Changed all indentations to all whitespaces | Benoit Germain | 20 | -6567/+6564 | |
Tabs mess up alignment of stack contents comments, so I'm done with them. | |||||
2022-01-19 | Replace deprecated pthread_yield with sched_yield | SoundBot | 1 | -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-17 | Fix missing cancel.c in rockspec | Benoit Germain | 1 | -1/+13 | |
2021-09-22 | fix require() wrapper to return all values returned by original require() | Benoit Germain | 6 | -151/+22 | |
2021-07-08 | deep_test vcproj migrated to VS2019v3.15.1 | Benoit Germain | 3 | -24/+183 | |
2021-07-08 | fix function transfer with lua_dump for Lua 5.4 failing for functions big ↵ | Benoit Germain | 5 | -16/+98 | |
enough to necessitate a buffer reallocation | |||||
2021-06-28 | Update cancel.c | Benoit Germain | 1 | -0/+1 | |
2021-06-28 | Update lanes-3.15.0-0.rockspecv3.15.0 | Benoit Germain | 1 | -2/+2 | |
2021-06-28 | fixed some tests | Benoit Germain | 3 | -4/+6 | |
2021-06-26 | fix stack overflow when transfering a clonable userdata referencing itself ↵ | Benoit Germain | 7 | -152/+245 | |
through a uservalue | |||||
2021-06-24 | correctly transfer the uservalue of a deep userdata | Benoit Germain | 17 | -422/+598 | |
2021-06-24 | expand deeptest.lua | Benoit Germain | 2 | -18/+20 | |
2021-06-23 | updated deep userdata unit test to expose issue #189 | Benoit Germain | 2 | -9/+51 | |
2021-06-23 | __lanesclone now receives the original as light userdata the first time it ↵ | Benoit Germain | 4 | -17/+35 | |
is called |