aboutsummaryrefslogtreecommitdiff
path: root/docs (unfollow)
Commit message (Collapse)AuthorFilesLines
2026-03-12Minor documentation improvementsHEADmasterBenoit Germain1-5/+8
2026-03-05Tweak test lanes.embedding.with_default_allocator/single_stateBenoit Germain1-2/+4
Use a more complex upvalue scenario (I use this to debug my natvis)
2026-03-05CLAUDE.md improvementsBenoit Germain1-2/+7
2026-03-05Internal improvementsBenoit Germain8-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
2026-03-04Tweak CLAUDE.mdBenoit Germain1-2/+4
2026-03-03Shamelessly grab Lua's CSS and use them for ourselves in the documentationBenoit Germain6-463/+689
2026-03-03Update copyright datesBenoit Germain3-12/+12
2026-03-03Improve Unique<> by making the arithmetic operators optionalBenoit Germain2-7/+18
2026-03-02Add CLAUDE.mdBenoit Germain3-0/+138
2026-03-02lane_new internal code cleanup step 7: PrepareLaneUserDataBenoit Germain1-57/+57
2026-03-02lane_new internal code cleanup step 6: TransferArgumentsBenoit Germain1-9/+16
2026-03-02lane_new internal code cleanup step 5: TransferLaneBodyBenoit Germain1-20/+29
2026-03-02lane_new internal code cleanup step 4: TransferGlobalsBenoit Germain1-21/+28
2026-03-02lane_new internal code cleanup step 3: RequireModulesInLaneBenoit Germain1-44/+51
2026-03-02lane_new internal code cleanup step 2: TransferPackageBenoit Germain1-8/+16
2026-03-02lane_new internal code cleanup step 1: ResolveLanePriorityBenoit Germain1-14/+27
2026-02-27Unify sleep() timeout with send() and receive (nil means forever)v4.0.0Benoit Germain5-28/+28
2026-02-26More minor doc tweaksBenoit Germain2-12/+16
2026-02-26Listed some remaining doc glitches to be reflected uponBenoit Germain1-0/+20
2026-02-26Fix typo in convert_max_attempts documentationBenoit Germain1-1/+1
2026-02-26Fix lanes.timers() documentation error, and add the relevant unit testBenoit Germain2-4/+10
2026-02-26Fix thread_priority_range() documentation errorBenoit Germain1-1/+1
2026-02-26Fix documentation about finalizersBenoit Germain1-1/+1
2026-02-26Fix linda:receive() documentation errorBenoit Germain1-1/+1
2026-02-26update CHANGESBenoit Germain1-1/+2
2026-02-26More cancellation documentation fixesBenoit Germain1-2/+4
2026-02-26Fix comments for lane_cancelBenoit Germain1-4/+1
2026-02-26change cancel_test() to raise cancel_error on hard-cancels by defaultBenoit Germain8-20/+43
2026-02-26Improve cancel_test() documentation and unit testBenoit Germain2-5/+19
2025-12-01Updated COPYRIGHT and READMEBenoit Germain4-1/+25
2025-11-19Link lanes_core.so with -fvisibility=hiddenBenoit Germain1-1/+1
2025-10-30Test full userdata keys with verbose_errorsBenoit Germain2-3/+12
2025-10-30Stronger test for verbose_errorsBenoit Germain1-5/+9
2025-10-27Two less global variablesBenoit Germain1-2/+3
2025-10-27verbose_errors improvementBenoit Germain8-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
2025-10-21Fix STACK_GROW under ClangBenoit Germain1-1/+1
Repeat change e0236dc2c4fffab98b6ce4f7126c1b260b87416d of C-implementation
2025-09-30Lift restriction on functions and userdata as table keysBenoit Germain6-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
2025-09-29Lift restriction on tables as table keysBenoit Germain7-14/+54
As demonstrated by the unit tests, there is no problem with using a table as a table key
2025-09-29Many small doc tweaksBenoit Germain1-39/+42
2025-09-23Fix embedded tests when PATH is insufficientBenoit Germain1-14/+35
* read package.path and use the list of paths to try to load lanes_core.dll
2025-09-22Fix a small doc typoBenoit Germain1-2/+2
2025-09-20Improve table and userdata conversionsBenoit Germain12-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
2025-08-21Improved func_is_string unit testBenoit Germain1-19/+27
2025-07-31Copy deep_userdata_example test script in the test frameworkBenoit Germain6-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
2025-07-31Adjust deep_userdata_example test script to the latest linda API changesBenoit Germain1-1/+1
2025-07-31RAII + setjmp = UBBenoit Germain2-40/+13
2025-07-28I don't even know why I ever included luajit.h. removed it.Benoit Germain1-1/+0
2025-07-27Tiny makefile tweak for Lua 5.5Benoit Germain1-1/+1
2025-07-25Split lanes.sleep unit tests and some linda unit tests tooBenoit Germain2-76/+91
2025-07-25Fix crashes in MSVC release builds related to KeeperOperationInProgressBenoit Germain3-14/+24
* scope the KeeperOperationInProgress object on linda calls * but since it's not enough, just comment it, it is only debug stuff anyway