| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | verbose_errors improvement | Benoit Germain | 2025-10-27 | 1 | -1/+1 |
| | | | | | | * Use std::format instead of sprintf for verbose errors when decoding table keys * Add a unit test for the different table key types | ||||
| * | Lift restriction on functions and userdata as table keys | Benoit Germain | 2025-09-30 | 1 | -8/+12 |
| | | | | | 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 | ||||
| * | Improved func_is_string unit test | Benoit Germain | 2025-08-21 | 1 | -19/+27 |
| | | |||||
| * | Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!) | Benoit Germain | 2025-07-04 | 1 | -1/+1 |
| | | |||||
| * | Change lane:join() return values | Benoit Germain | 2025-06-05 | 11 | -36/+41 |
| | | | | | | | * when no error is raised in the lane, lane:join() now precedes the lane returned values with true * lane body is no longer forced to return something when used with join() * adjusted all relevant unit tests accordingly | ||||
| * | A unit test for linda wake_period | Benoit Germain | 2025-04-18 | 1 | -2/+4 |
| | | |||||
| * | New feature: Linda periodical cancellation checks | Benoit Germain | 2025-04-18 | 8 | -37/+37 |
| | | | | | | | | * lanes.linda() api change: takes all settings in a single table argument * new linda creation argument wake_period * new lanes.configure setting linda_wake_period * adjusted all unit tests (one TODO test fails on purpose) | ||||
| * | Linda batched mode rework | Benoit Germain | 2025-04-15 | 4 | -12/+11 |
| | | | | | | * linda.batched special value is removed * new function linda:receive_batched | ||||
| * | Fix some tests (kinda) | Benoit Germain | 2025-04-15 | 1 | -12/+21 |
| | | | | | | * split tasking_cancelling in two * add a timer in basic and tasking_cancelling as a temporary workaround for a deadlock in mingw ucrt64 builds | ||||
| * | Give a name to all lanes in the tests | Benoit Germain | 2025-03-14 | 30 | -62/+62 |
| | | |||||
| * | lanes/core.[so|dll] → lanes_core.[so|dll] | Benoit Germain | 2025-03-14 | 1 | -1/+1 |
| | | |||||
| * | Add a VisualStudio solution to build and debug Lanes | Benoit Germain | 2025-03-11 | 1 | -2/+2 |
| | | | | | | | * configured to build Lanes, the example module deep_userdata_example, and the unit tests * relies on Lua 5.1 → 5.4, LuaJIT and MoonJIT to be built and located in a fixed directory * manual_register legacy test now uses deep_userdata_example module instead of lfs | ||||
| * | Fix/disable some unit tests against LuaJIT until the failure reason is ↵ | Benoit Germain | 2025-03-10 | 1 | -1/+2 |
| | | | | | | | | | | discovered * cancel.lua fails when using lanes.coro * coro/basics.lua fails because an error message is different * coro/error_handling fails for an unknown reason * a lanes.finally test crashes inside lua_close | ||||
| * | lanes.nameof internal code refacto + a few unit tests | Benoit Germain | 2025-03-05 | 1 | -2/+2 |
| | | |||||
| * | Make VS Test Explorer happy by absorbing the text output of legacy tests | Benoit Germain | 2024-12-20 | 1 | -4/+14 |
| | | |||||
| * | Migrated unit tests to Catch2 v3.7.1 | Benoit Germain | 2024-12-20 | 1 | -5/+5 |
| | | |||||
| * | Internal rework of an enum bad practice usage | Benoit Germain | 2024-12-03 | 1 | -56/+56 |
| | | |||||
| * | New method linda:restrict() | Benoit Germain | 2024-12-03 | 2 | -3/+10 |
| | | |||||
| * | Internal refactorization to properly handle lua_resume idiosyncrasies | Benoit Germain | 2024-07-29 | 4 | -5/+12 |
| | | |||||
| * | get_debug_threadname → get_threadname | Benoit Germain | 2024-07-04 | 1 | -3/+3 |
| | | |||||
| * | Fix finalizers in coroutine lanes | Benoit Germain | 2024-07-04 | 1 | -4/+7 |
| | | |||||
| * | Renamed set_debug_threadname → lane_threadname (can also read the current ↵ | Benoit Germain | 2024-07-03 | 5 | -14/+14 |
| | | | | | name now) | ||||
| * | Improved recursive.lua | Benoit Germain | 2024-07-02 | 1 | -5/+5 |
| | | |||||
| * | linda:limit() and linda:set() return a second value, a string representing ↵ | Benoit Germain | 2024-06-27 | 1 | -0/+1 |
| | | | | | the fill status | ||||
| * | Change linda:limit() | Benoit Germain | 2024-06-26 | 1 | -2/+2 |
| | | | | | | | * read the current limit of a key if no limit is provided * "unlimited" is to be used to clear the limit * fix linda:set() not ignoring the limit | ||||
| * | Make lanes.gen stricter on base libraries | Benoit Germain | 2024-06-26 | 1 | -1/+1 |
| | | |||||
| * | Fix on_state_create incorrectly rejecting Lua functions with only _ENV as ↵ | Benoit Germain | 2024-06-19 | 1 | -7/+2 |
| | | | | | upvalue | ||||
| * | Wording fix: parameter → argument | Benoit Germain | 2024-06-14 | 5 | -11/+11 |
| | | |||||
| * | Fix error handling when indexing a lane with unexpected data | Benoit Germain | 2024-06-14 | 1 | -1/+3 |
| | | |||||
| * | More char* -> std::string_view conversions | Benoit Germain | 2024-06-14 | 1 | -2/+2 |
| | | |||||
| * | More fixes to make clang happy | Benoit Germain | 2024-06-14 | 1 | -2/+12 |
| | | |||||
| * | linda :get(), :set(), :limit() return value changes | Benoit Germain | 2024-06-12 | 7 | -33/+45 |
| | | |||||
| * | Unit test for to-be-closed Lanes and Lindas | Benoit Germain | 2024-06-12 | 1 | -0/+123 |
| | | |||||
| * | Adjust lanes.configure() documentation | Benoit Germain | 2024-06-11 | 15 | -43/+35 |
| | | |||||
| * | New lane:__close does a lane:join() | Benoit Germain | 2024-06-11 | 1 | -4/+27 |
| | | |||||
| * | Fixes and improvements to lane:join() | Benoit Germain | 2024-06-11 | 9 | -7/+32 |
| | | | | | | * fix: returns nil,cancel_error when lane was cancelled * improvement: enforce non-nil first return value of lane body when using lane:join() to obtain the results | ||||
| * | linda:send() returns nil,<something> in case of error | Benoit Germain | 2024-06-10 | 1 | -7/+7 |
| | | |||||
| * | Replaced __lanesignore with __lanesconvert | Benoit Germain | 2024-06-10 | 1 | -2/+2 |
| | | |||||
| * | Fix track_lanes.lua | Benoit Germain | 2024-06-10 | 1 | -9/+13 |
| | | |||||
| * | Suspend/resume GC around Linda operations | Benoit Germain | 2024-06-10 | 1 | -4/+8 |
| | | |||||
| * | Fix basic.lua | Benoit Germain | 2024-06-07 | 1 | -1/+1 |
| | | |||||
| * | lanes.linda("auto") | Benoit Germain | 2024-06-06 | 1 | -3/+4 |
| | | |||||
| * | Tweak linda_perf.lua | Benoit Germain | 2024-06-06 | 1 | -8/+3 |
| | | |||||
| * | Fix Lua stack overflow in KeyUD:peek() | Benoit Germain | 2024-06-06 | 1 | -74/+87 |
| | | |||||
| * | Refactored keeper implementation of linda:receive() | Benoit Germain | 2024-06-04 | 3 | -3/+9 |
| | | |||||
| * | Refactored keeper implementation of linda:get() | Benoit Germain | 2024-06-04 | 2 | -7/+51 |
| | | |||||
| * | New global setting "strip_functions" | Benoit Germain | 2024-06-03 | 1 | -11/+13 |
| | | |||||
| * | Moved lanes.sleep implementation to the C-side | Benoit Germain | 2024-06-03 | 1 | -2/+9 |
| | | |||||
| * | Clarified keeper.cpp stack tracking comments | Benoit Germain | 2024-06-03 | 1 | -3/+9 |
| | | |||||
| * | Some API changes | Benoit Germain | 2024-05-31 | 10 | -41/+77 |
| | | | | | | | * lanes.timers() can return nil, cancel_error if interrupted * linda:receive() always return a k,v, where k is nil when v is "timeout" or cancel_error * lanes.sleep returns nil, "timeout" during normal operations | ||||
