aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* C++ migration: buildfix for pre-5.4 Lua targetsBenoit Germain2024-03-271-0/+1
|
* C++ migration: deep_test vcproj configuration fix (we need at least C++17 ↵Benoit Germain2024-03-271-0/+18
| | | | standard support)
* C++ migration:: new helper template lua_newuserdatauvBenoit Germain2024-03-273-52/+59
|
* C++ migration: fix deep userdata refcounting bug introduced by std::atomic usageBenoit Germain2024-03-271-3/+2
|
* C++ migration: new helper templates lua_tolightuserdata and lua_tofulluserdataBenoit Germain2024-03-279-50/+74
|
* C++ migration: templated lua_touserdataBenoit Germain2024-03-2610-32/+76
|
* C++ migration: Fix metatable caching bug introduced when converting the ↵Benoit Germain2024-03-262-2/+2
| | | | index to std::atomic
* C++ migration: refactor AllocatorDefinition and ProtectedAllocator into classesBenoit Germain2024-03-269-100/+137
|
* C++ migration: Universe MUTEX_T replaced with std::mutex and std::atomicBenoit Germain2024-03-2510-145/+115
|
* C++ migration: revamped stack checking macrosBenoit Germain2024-03-2510-320/+366
|
* deep_test VS user configBenoit Germain2024-03-251-0/+1
|
* deep_test VS extension Smart Command Line Arguments config fileBenoit Germain2024-03-251-0/+16
|
* C++ migration: make deep_test build and runBenoit Germain2024-03-254-89/+82
|
* C++ migration: STACK_GROW is no longer a macro, sanitized and fixed warnings ↵Benoit Germain2024-03-227-400/+448
| | | | in keeper.cpp
* C++ migration: REGISTRY_SET and REGISTRY_GET are gone, welcome templates and ↵Benoit Germain2024-03-219-75/+75
| | | | lambdas
* C++ migration: ThreadStatus, CancelRequest and CancelResult are enum classBenoit Germain2024-03-205-69/+68
|
* C++ migration: removed most typedef, removed uint_tBenoit Germain2024-03-2014-105/+87
|
* C++ migration: more NULL → nullptrBenoit Germain2024-03-2011-90/+95
|
* C++ migration: UniqueKeyBenoit Germain2024-03-2013-62/+80
|
* C++ migration: bool_t → boolBenoit Germain2024-03-2014-144/+131
|
* Merge branch 'C-Implementation'Benoit Germain2024-03-192-2/+5
|\
| * fix small internal issue with when hitting timeout on thread kill during ↵Benoit Germain2024-03-192-2/+5
| | | | | | | | thread_cancel() in pthread implementation
* | C++ migration: MSVC-specific "inline" is goneBenoit Germain2024-03-191-5/+0
| |
* | C++ migration: NULL → nullptrBenoit Germain2024-03-196-79/+79
| |
* | C++ migration: changed file extensions from .c to .cppBenoit Germain2024-03-1914-14/+14
| |
* | C++ migration: buildfixesBenoit Germain2024-03-1922-155/+149
|/ | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C"
* Fixed documentation regarding "standard modules"Benoit Germain2024-02-231-22/+73
|
* Better CHANGE commentv3.16.3Benoit Germain2024-02-221-1/+1
|
* Detect runtime LuaJIT/PUC-Lua mismatchBenoit Germain2024-02-225-10/+25
|
* Merge branch 'master' of https://github.com/LuaLanes/lanesBenoit Germain2024-02-221-1/+5
|\
| * Merge pull request #222 from ConiKost/muslBenoit Germain2024-01-281-1/+5
| |\ | | | | | | src/threading.h: fix compilation on musl
| | * src/threading.h: fix compilation on muslConrad Kostecki2024-01-231-1/+5
| |/ | | | | | | Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
* / Bump deep_test.vcxproj to VS2022Benoit Germain2024-02-221-18/+18
|/
* Finalize version 3.16.2v3.16.2Benoit Germain2023-08-175-5/+9
|
* Merge pull request #219 from Mitalie/fix-linux-crashBenoit Germain2023-08-171-4/+4
|\ | | | | Prevent crash on linux as non-root
| * Prevent crash on linux as non-rootAnssi Mäkinen2023-08-171-4/+4
|/ | | | Fixes #218
* Minor tweaksv3.16.1Benoit Germain2023-08-168-16/+13
|
* new .internal_allocator configuration IUNTESTED)Benoit Germain2023-08-0913-62/+83
| | | | new configuration option .internal_allocator to help LuaJIT users. THIS IS YET UNTESTED, USE AT YOUR OWN RISKS.
* tweaks to linux thread priority managementBenoit Germain2023-07-284-102/+122
|
* Update comparison.htmlBenoit Germain2023-07-281-2/+2
|
* moonjit supportBenoit Germain2022-03-0912-75/+177
|
* Merge pull request #209 from jlainema/patch-1Benoit Germain2022-03-041-1/+1
|\ | | | | Update lanes-3.16.0-0.rockspec
| * Update lanes-3.16.0-0.rockspecjlainema2022-03-031-1/+1
|/ | | does not install from the rockspec without using git for url format
* Merge pull request #208 from eligovision/lanes_lanesclone3args_fixv3.16.0Benoit Germain2022-03-011-4/+4
|\ | | | | Bug in __lanesclone with 3 parameters mechanism fixed (index was wron…
| * Bug in __lanesclone with 3 parameters mechanism fixed (index was wrong in ↵valid-ptr2022-03-011-4/+4
|/ | | | inter_copy_function); Some comments improved
* deep_test tweaksBenoit Germain2022-02-273-13/+186
|
* Make allocator threadsafe by default when running LuaJIT, because LuaJIT ↵Benoit Germain2022-02-215-21/+25
| | | | allocator is not
* use malloc/free for keeper control structure when compiling for LuaJITBenoit Germain2022-02-211-6/+18
|
* Update deep_test.vcxproj.userBenoit Germain2022-02-211-10/+35
|
* some fixes in deep_test vcproj for LuaJIT-2.1.0-beta3 testingBenoit Germain2022-02-212-0/+85
|