aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Minor documentation improvementsHEADmasterBenoit Germain2026-03-121-5/+8
|
* Tweak test lanes.embedding.with_default_allocator/single_stateBenoit Germain2026-03-051-2/+4
| | | | Use a more complex upvalue scenario (I use this to debug my natvis)
* CLAUDE.md improvementsBenoit Germain2026-03-051-2/+7
|
* Internal improvementsBenoit Germain2026-03-058-154/+188
| | | | | | (1) replace RAII/destructor-based error handling in lane_new with lua_pcall (2) validate native thread priorities (3) improve unit test coverage for the latter
* Tweak CLAUDE.mdBenoit Germain2026-03-041-2/+4
|
* Shamelessly grab Lua's CSS and use them for ourselves in the documentationBenoit Germain2026-03-036-463/+689
|
* Update copyright datesBenoit Germain2026-03-033-12/+12
|
* Improve Unique<> by making the arithmetic operators optionalBenoit Germain2026-03-032-7/+18
|
* Add CLAUDE.mdBenoit Germain2026-03-023-0/+138
|
* lane_new internal code cleanup step 7: PrepareLaneUserDataBenoit Germain2026-03-021-57/+57
|
* lane_new internal code cleanup step 6: TransferArgumentsBenoit Germain2026-03-021-9/+16
|
* lane_new internal code cleanup step 5: TransferLaneBodyBenoit Germain2026-03-021-20/+29
|
* lane_new internal code cleanup step 4: TransferGlobalsBenoit Germain2026-03-021-21/+28
|
* lane_new internal code cleanup step 3: RequireModulesInLaneBenoit Germain2026-03-021-44/+51
|
* lane_new internal code cleanup step 2: TransferPackageBenoit Germain2026-03-021-8/+16
|
* lane_new internal code cleanup step 1: ResolveLanePriorityBenoit Germain2026-03-021-14/+27
|
* Unify sleep() timeout with send() and receive (nil means forever)v4.0.0Benoit Germain2026-02-275-28/+28
|
* More minor doc tweaksBenoit Germain2026-02-262-12/+16
|
* Listed some remaining doc glitches to be reflected uponBenoit Germain2026-02-261-0/+20
|
* Fix typo in convert_max_attempts documentationBenoit Germain2026-02-261-1/+1
|
* Fix lanes.timers() documentation error, and add the relevant unit testBenoit Germain2026-02-262-4/+10
|
* Fix thread_priority_range() documentation errorBenoit Germain2026-02-261-1/+1
|
* Fix documentation about finalizersBenoit Germain2026-02-261-1/+1
|
* Fix linda:receive() documentation errorBenoit Germain2026-02-261-1/+1
|
* update CHANGESBenoit Germain2026-02-261-1/+2
|
* More cancellation documentation fixesBenoit Germain2026-02-261-2/+4
|
* Fix comments for lane_cancelBenoit Germain2026-02-261-4/+1
|
* change cancel_test() to raise cancel_error on hard-cancels by defaultBenoit Germain2026-02-268-20/+43
|
* Improve cancel_test() documentation and unit testBenoit Germain2026-02-262-5/+19
|
* Updated COPYRIGHT and READMEBenoit Germain2025-12-014-1/+25
|
* Link lanes_core.so with -fvisibility=hiddenBenoit Germain2025-11-191-1/+1
|
* Test full userdata keys with verbose_errorsBenoit Germain2025-10-302-3/+12
|
* Stronger test for verbose_errorsBenoit Germain2025-10-301-5/+9
|
* Two less global variablesBenoit Germain2025-10-271-2/+3
|
* verbose_errors improvementBenoit Germain2025-10-278-14/+62
| | | | | * Use std::format instead of sprintf for verbose errors when decoding table keys * Add a unit test for the different table key types
* Fix STACK_GROW under ClangBenoit Germain2025-10-211-1/+1
| | | | Repeat change e0236dc2c4fffab98b6ce4f7126c1b260b87416d of C-implementation
* Lift restriction on functions and userdata as table keysBenoit Germain2025-09-306-50/+149
| | | | As demonstrated by the unit tests, there is no problem with using a function or a userdata as a table key, as long as they are transferable
* Lift restriction on tables as table keysBenoit Germain2025-09-297-14/+54
| | | | As demonstrated by the unit tests, there is no problem with using a table as a table key
* Many small doc tweaksBenoit Germain2025-09-291-39/+42
|
* Fix embedded tests when PATH is insufficientBenoit Germain2025-09-231-14/+35
| | | | * read package.path and use the list of paths to try to load lanes_core.dll
* Fix a small doc typoBenoit Germain2025-09-221-2/+2
|
* Improve table and userdata conversionsBenoit Germain2025-09-2012-132/+656
| | | | | | | | * add convert_fallback and convert_max_attempts to global settings * if no __lanesconvert is available, use convert_fallback (can be useful for externally provided full userdata with fixed metatables) * only try conversion on non-deep and non-clonable userdata * conversion can be applied recursively, up to convert_max_attempts times * plus all the relevant unit tests of course
* Improved func_is_string unit testBenoit Germain2025-08-211-19/+27
|
* Copy deep_userdata_example test script in the test frameworkBenoit Germain2025-07-316-3/+180
| | | | | * I need to keep deep_userdata_example hackishly built-in inside the unit tests executable, because using the external module cause a crash in Lua51 tests (module is unloaded before some deep objects are GCed...) * copy the test script in the proper location and invoke it as part of the tests
* Adjust deep_userdata_example test script to the latest linda API changesBenoit Germain2025-07-311-1/+1
|
* RAII + setjmp = UBBenoit Germain2025-07-312-40/+13
|
* I don't even know why I ever included luajit.h. removed it.Benoit Germain2025-07-281-1/+0
|
* Tiny makefile tweak for Lua 5.5Benoit Germain2025-07-271-1/+1
|
* Split lanes.sleep unit tests and some linda unit tests tooBenoit Germain2025-07-252-76/+91
|
* Fix crashes in MSVC release builds related to KeeperOperationInProgressBenoit Germain2025-07-253-14/+24
| | | | | * scope the KeeperOperationInProgress object on linda calls * but since it's not enough, just comment it, it is only debug stuff anyway