| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Minor documentation improvementsHEADmaster | Benoit Germain | 2026-03-12 | 1 | -5/+8 |
| | | |||||
| * | Tweak test lanes.embedding.with_default_allocator/single_state | Benoit Germain | 2026-03-05 | 1 | -2/+4 |
| | | | | | Use a more complex upvalue scenario (I use this to debug my natvis) | ||||
| * | CLAUDE.md improvements | Benoit Germain | 2026-03-05 | 1 | -2/+7 |
| | | |||||
| * | Internal improvements | Benoit Germain | 2026-03-05 | 8 | -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.md | Benoit Germain | 2026-03-04 | 1 | -2/+4 |
| | | |||||
| * | Shamelessly grab Lua's CSS and use them for ourselves in the documentation | Benoit Germain | 2026-03-03 | 6 | -463/+689 |
| | | |||||
| * | Update copyright dates | Benoit Germain | 2026-03-03 | 3 | -12/+12 |
| | | |||||
| * | Improve Unique<> by making the arithmetic operators optional | Benoit Germain | 2026-03-03 | 2 | -7/+18 |
| | | |||||
| * | Add CLAUDE.md | Benoit Germain | 2026-03-02 | 3 | -0/+138 |
| | | |||||
| * | lane_new internal code cleanup step 7: PrepareLaneUserData | Benoit Germain | 2026-03-02 | 1 | -57/+57 |
| | | |||||
| * | lane_new internal code cleanup step 6: TransferArguments | Benoit Germain | 2026-03-02 | 1 | -9/+16 |
| | | |||||
| * | lane_new internal code cleanup step 5: TransferLaneBody | Benoit Germain | 2026-03-02 | 1 | -20/+29 |
| | | |||||
| * | lane_new internal code cleanup step 4: TransferGlobals | Benoit Germain | 2026-03-02 | 1 | -21/+28 |
| | | |||||
| * | lane_new internal code cleanup step 3: RequireModulesInLane | Benoit Germain | 2026-03-02 | 1 | -44/+51 |
| | | |||||
| * | lane_new internal code cleanup step 2: TransferPackage | Benoit Germain | 2026-03-02 | 1 | -8/+16 |
| | | |||||
| * | lane_new internal code cleanup step 1: ResolveLanePriority | Benoit Germain | 2026-03-02 | 1 | -14/+27 |
| | | |||||
| * | Unify sleep() timeout with send() and receive (nil means forever)v4.0.0 | Benoit Germain | 2026-02-27 | 5 | -28/+28 |
| | | |||||
| * | More minor doc tweaks | Benoit Germain | 2026-02-26 | 2 | -12/+16 |
| | | |||||
| * | Listed some remaining doc glitches to be reflected upon | Benoit Germain | 2026-02-26 | 1 | -0/+20 |
| | | |||||
| * | Fix typo in convert_max_attempts documentation | Benoit Germain | 2026-02-26 | 1 | -1/+1 |
| | | |||||
| * | Fix lanes.timers() documentation error, and add the relevant unit test | Benoit Germain | 2026-02-26 | 2 | -4/+10 |
| | | |||||
| * | Fix thread_priority_range() documentation error | Benoit Germain | 2026-02-26 | 1 | -1/+1 |
| | | |||||
| * | Fix documentation about finalizers | Benoit Germain | 2026-02-26 | 1 | -1/+1 |
| | | |||||
| * | Fix linda:receive() documentation error | Benoit Germain | 2026-02-26 | 1 | -1/+1 |
| | | |||||
| * | update CHANGES | Benoit Germain | 2026-02-26 | 1 | -1/+2 |
| | | |||||
| * | More cancellation documentation fixes | Benoit Germain | 2026-02-26 | 1 | -2/+4 |
| | | |||||
| * | Fix comments for lane_cancel | Benoit Germain | 2026-02-26 | 1 | -4/+1 |
| | | |||||
| * | change cancel_test() to raise cancel_error on hard-cancels by default | Benoit Germain | 2026-02-26 | 8 | -20/+43 |
| | | |||||
| * | Improve cancel_test() documentation and unit test | Benoit Germain | 2026-02-26 | 2 | -5/+19 |
| | | |||||
| * | Updated COPYRIGHT and README | Benoit Germain | 2025-12-01 | 4 | -1/+25 |
| | | |||||
| * | Link lanes_core.so with -fvisibility=hidden | Benoit Germain | 2025-11-19 | 1 | -1/+1 |
| | | |||||
| * | Test full userdata keys with verbose_errors | Benoit Germain | 2025-10-30 | 2 | -3/+12 |
| | | |||||
| * | Stronger test for verbose_errors | Benoit Germain | 2025-10-30 | 1 | -5/+9 |
| | | |||||
| * | Two less global variables | Benoit Germain | 2025-10-27 | 1 | -2/+3 |
| | | |||||
| * | verbose_errors improvement | Benoit Germain | 2025-10-27 | 8 | -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 Clang | Benoit Germain | 2025-10-21 | 1 | -1/+1 |
| | | | | | Repeat change e0236dc2c4fffab98b6ce4f7126c1b260b87416d of C-implementation | ||||
| * | Lift restriction on functions and userdata as table keys | Benoit Germain | 2025-09-30 | 6 | -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 keys | Benoit Germain | 2025-09-29 | 7 | -14/+54 |
| | | | | | As demonstrated by the unit tests, there is no problem with using a table as a table key | ||||
| * | Many small doc tweaks | Benoit Germain | 2025-09-29 | 1 | -39/+42 |
| | | |||||
| * | Fix embedded tests when PATH is insufficient | Benoit Germain | 2025-09-23 | 1 | -14/+35 |
| | | | | | * read package.path and use the list of paths to try to load lanes_core.dll | ||||
| * | Fix a small doc typo | Benoit Germain | 2025-09-22 | 1 | -2/+2 |
| | | |||||
| * | Improve table and userdata conversions | Benoit Germain | 2025-09-20 | 12 | -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 test | Benoit Germain | 2025-08-21 | 1 | -19/+27 |
| | | |||||
| * | Copy deep_userdata_example test script in the test framework | Benoit Germain | 2025-07-31 | 6 | -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 changes | Benoit Germain | 2025-07-31 | 1 | -1/+1 |
| | | |||||
| * | RAII + setjmp = UB | Benoit Germain | 2025-07-31 | 2 | -40/+13 |
| | | |||||
| * | I don't even know why I ever included luajit.h. removed it. | Benoit Germain | 2025-07-28 | 1 | -1/+0 |
| | | |||||
| * | Tiny makefile tweak for Lua 5.5 | Benoit Germain | 2025-07-27 | 1 | -1/+1 |
| | | |||||
| * | Split lanes.sleep unit tests and some linda unit tests too | Benoit Germain | 2025-07-25 | 2 | -76/+91 |
| | | |||||
| * | Fix crashes in MSVC release builds related to KeeperOperationInProgress | Benoit Germain | 2025-07-25 | 3 | -14/+24 |
| | | | | | | * scope the KeeperOperationInProgress object on linda calls * but since it's not enough, just comment it, it is only debug stuff anyway | ||||
