| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2026-02-26 | More minor doc tweaks | Benoit Germain | 2 | -12/+16 | |
| 2026-02-26 | Listed some remaining doc glitches to be reflected upon | Benoit Germain | 1 | -0/+20 | |
| 2026-02-26 | Fix typo in convert_max_attempts documentation | Benoit Germain | 1 | -1/+1 | |
| 2026-02-26 | Fix lanes.timers() documentation error, and add the relevant unit test | Benoit Germain | 2 | -4/+10 | |
| 2026-02-26 | Fix thread_priority_range() documentation error | Benoit Germain | 1 | -1/+1 | |
| 2026-02-26 | Fix documentation about finalizers | Benoit Germain | 1 | -1/+1 | |
| 2026-02-26 | Fix linda:receive() documentation error | Benoit Germain | 1 | -1/+1 | |
| 2026-02-26 | update CHANGES | Benoit Germain | 1 | -1/+2 | |
| 2026-02-26 | More cancellation documentation fixes | Benoit Germain | 1 | -2/+4 | |
| 2026-02-26 | Fix comments for lane_cancel | Benoit Germain | 1 | -4/+1 | |
| 2026-02-26 | change cancel_test() to raise cancel_error on hard-cancels by default | Benoit Germain | 8 | -20/+43 | |
| 2026-02-26 | Improve cancel_test() documentation and unit test | Benoit Germain | 2 | -5/+19 | |
| 2025-12-01 | Updated COPYRIGHT and README | Benoit Germain | 4 | -1/+25 | |
| 2025-11-19 | Link lanes_core.so with -fvisibility=hidden | Benoit Germain | 1 | -1/+1 | |
| 2025-10-30 | Test full userdata keys with verbose_errors | Benoit Germain | 2 | -3/+12 | |
| 2025-10-30 | Stronger test for verbose_errors | Benoit Germain | 1 | -5/+9 | |
| 2025-10-27 | Two less global variables | Benoit Germain | 1 | -2/+3 | |
| 2025-10-27 | verbose_errors improvement | Benoit Germain | 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 | |||||
| 2025-10-21 | Fix STACK_GROW under Clang | Benoit Germain | 1 | -1/+1 | |
| Repeat change e0236dc2c4fffab98b6ce4f7126c1b260b87416d of C-implementation | |||||
| 2025-09-30 | Lift restriction on functions and userdata as table keys | Benoit Germain | 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 | |||||
| 2025-09-29 | Lift restriction on tables as table keys | Benoit Germain | 7 | -14/+54 | |
| As demonstrated by the unit tests, there is no problem with using a table as a table key | |||||
| 2025-09-29 | Many small doc tweaks | Benoit Germain | 1 | -39/+42 | |
| 2025-09-23 | Fix embedded tests when PATH is insufficient | Benoit Germain | 1 | -14/+35 | |
| * read package.path and use the list of paths to try to load lanes_core.dll | |||||
| 2025-09-22 | Fix a small doc typo | Benoit Germain | 1 | -2/+2 | |
| 2025-09-20 | Improve table and userdata conversions | Benoit Germain | 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 | |||||
| 2025-08-21 | Improved func_is_string unit test | Benoit Germain | 1 | -19/+27 | |
| 2025-07-31 | Copy deep_userdata_example test script in the test framework | Benoit Germain | 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 | |||||
| 2025-07-31 | Adjust deep_userdata_example test script to the latest linda API changes | Benoit Germain | 1 | -1/+1 | |
| 2025-07-31 | RAII + setjmp = UB | Benoit Germain | 2 | -40/+13 | |
| 2025-07-28 | I don't even know why I ever included luajit.h. removed it. | Benoit Germain | 1 | -1/+0 | |
| 2025-07-27 | Tiny makefile tweak for Lua 5.5 | Benoit Germain | 1 | -1/+1 | |
| 2025-07-25 | Split lanes.sleep unit tests and some linda unit tests too | Benoit Germain | 2 | -76/+91 | |
| 2025-07-25 | Fix crashes in MSVC release builds related to KeeperOperationInProgress | Benoit Germain | 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 | |||||
| 2025-07-24 | Rework function bytecode dumping to be Lua5.5-ready | Benoit Germain | 7 | -45/+53 | |
| * prepare the luaL_Buffer in the destination state instead of the source state to prevent stack issues when everything happens in the same state | |||||
| 2025-07-24 | Use LANES_DEBUG instead of MSVC-specific _DEBUG to activate debug code | Benoit Germain | 2 | -44/+45 | |
| 2025-07-24 | Use LANES_DEBUG instead of MSVC-specific _DEBUG to activate debug code | Benoit Germain | 4 | -22/+32 | |
| 2025-07-22 | workaround a possible Lua 5.5 bug when dumping functions (but it doesn't ↵ | Benoit Germain | 1 | -0/+5 | |
| solve everything) | |||||
| 2025-07-22 | New helper to push function bytecode (to facilitate Lua 5.5 support) | Benoit Germain | 3 | -38/+53 | |
| 2025-07-20 | cmake for c++20 in master branch | sonoro1234 | 1 | -2/+3 | |
| 2025-07-04 | Minor doc fixes | Benoit Germain | 1 | -2/+2 | |
| 2025-07-04 | Added Lua 5.5 support | Benoit Germain | 10 | -32/+97 | |
| * some unit tests fail/segfault/freeze, but that could be because Lua 5.5 is still in beta yet | |||||
| 2025-07-04 | Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!) | Benoit Germain | 25 | -390/+390 | |
| 2025-07-04 | Added targets for Lua 5.5 in VS projects and Solution | Benoit Germain | 4 | -0/+737 | |
| 2025-07-04 | Split coro tests in several scripts | Benoit Germain | 13 | -203/+288 | |
| 2025-07-03 | Fix more issues related to suspended coroutines and join/indexing operations | Benoit Germain | 5 | -162/+269 | |
| * indexing and joining a suspended lane closes the coroutine, causing the termination of the lane * properly close coroutine to-be-closed variables on interruption | |||||
| 2025-07-01 | Clarified interactions between join() and coroutines | Benoit Germain | 2 | -46/+75 | |
| 2025-06-26 | Preparation for lane:close() and correct to-be-closed variables | Benoit Germain | 9 | -123/+299 | |
| * lane:join() can no longer be used to read yielded values * same with lane indexing * stub for lane:close(), similar to coroutine.close() (not implemented yet) * preparing tests for to-be-closed variables in yielded coroutine lanes * yielded lanes unlock and terminate properly at Lanes shutdown | |||||
| 2025-06-26 | Minor documentation fix | Benoit Germain | 1 | -2/+2 | |
| 2025-06-25 | Minor code refacto (Lane::waitForCompletion) | Benoit Germain | 2 | -27/+15 | |
| 2025-06-24 | Move some tests to a separate script | Benoit Germain | 5 | -27/+33 | |
