| Commit message (Expand) | Author | Files | Lines |
2024-07-30 | Code boyscouting | Benoit Germain | 4 | -28/+30 |
2024-07-29 | Internal refactorization to properly handle lua_resume idiosyncrasies | Benoit Germain | 8 | -187/+292 |
2024-07-29 | Fix luaG_setmetatable | Benoit Germain | 1 | -2/+2 |
2024-07-08 | Update BUGS | Benoit Germain | 1 | -46/+1 |
2024-07-04 | Reorganize CHANGES contents | Benoit Germain | 1 | -35/+40 |
2024-07-04 | Documentation for coroutine lanes | Benoit Germain | 2 | -10/+62 |
2024-07-04 | get_debug_threadname → get_threadname | Benoit Germain | 3 | -8/+8 |
2024-07-04 | Fix finalizers in coroutine lanes | Benoit Germain | 2 | -6/+11 |
2024-07-04 | Error handling in coroutine lanes | Benoit Germain | 2 | -23/+28 |
2024-07-03 | It is possible to index and join a suspended coroutine lane | Benoit Germain | 3 | -16/+57 |
2024-07-03 | Renamed set_debug_threadname → lane_threadname (can also read the current n... | Benoit Germain | 10 | -35/+64 |
2024-07-03 | Add minimal coroutine support: no doc, no error handling, no cancellation han... | Benoit Germain | 3 | -36/+160 |
2024-07-02 | Improved recursive.lua | Benoit Germain | 1 | -5/+5 |
2024-07-02 | InterCopyContex::interCopy() can copy stuff from below the top of the source ... | Benoit Germain | 1 | -3/+8 |
2024-07-02 | Wrap lua_resume for compatibility | Benoit Germain | 1 | -0/+46 |
2024-07-01 | A small step toward coroutine-based lanes | Benoit Germain | 2 | -42/+59 |
2024-07-01 | lanes.finally() handler decides whether to thow or freeze | Benoit Germain | 2 | -14/+17 |
2024-06-28 | Make Lanes crash on purpose at shutdown if some lanes still run | Benoit Germain | 7 | -54/+48 |
2024-06-27 | linda:limit() and linda:set() return a second value, a string representing th... | Benoit Germain | 6 | -46/+92 |
2024-06-26 | Change linda:limit() | Benoit Germain | 7 | -36/+66 |
2024-06-26 | Remove obsolete comments | Benoit Germain | 1 | -16/+0 |
2024-06-26 | Boyscouting | Benoit Germain | 1 | -7/+7 |
2024-06-26 | Fix (harmless) bad internal usage of luaopen_lanes_core | Benoit Germain | 1 | -13/+4 |
2024-06-26 | Make lanes.gen stricter on base libraries | Benoit Germain | 8 | -33/+71 |
2024-06-25 | Fix lanes.gen not correctly detecting '*' misuse | Benoit Germain | 1 | -1/+5 |
2024-06-24 | Lindas now accept deep user data as valid keys | Benoit Germain | 5 | -2/+19 |
2024-06-24 | linda:dump correctly outputs limit as "unlimited" for unlimited keys | Benoit Germain | 2 | -1/+6 |
2024-06-24 | Having luaG_tostring return a non-empty string_view on non-string values was ... | Benoit Germain | 3 | -3/+3 |
2024-06-24 | Fix wrong Linda name when not giving any | Benoit Germain | 3 | -2/+22 |
2024-06-21 | Fix luaG_tostring to return a valid string even if the value is not convertible | Benoit Germain | 1 | -1/+1 |
2024-06-20 | Revert overzealous upvalue check on on_state_create | Benoit Germain | 2 | -16/+6 |
2024-06-20 | Better error message on unknown configuration setting | Benoit Germain | 1 | -2/+2 |
2024-06-19 | Boyscouting | Benoit Germain | 1 | -14/+14 |
2024-06-19 | Config parameter validators can append extra information to the error message | Benoit Germain | 1 | -11/+45 |
2024-06-19 | Tweak luaG_getfuncsubtype | Benoit Germain | 2 | -16/+13 |
2024-06-19 | Fix on_state_create incorrectly rejecting Lua functions with only _ENV as upv... | Benoit Germain | 2 | -14/+19 |
2024-06-19 | Improved on_state_create implementation | Benoit Germain | 5 | -76/+84 |
2024-06-18 | Give a chance to config.allocator to provide a specific allocator for interna... | Benoit Germain | 6 | -26/+35 |
2024-06-18 | Updated CHANGES | Benoit Germain | 1 | -17/+19 |
2024-06-18 | Moved AllocatorDefinition in a lanes namespace | Benoit Germain | 6 | -48/+59 |
2024-06-18 | When it is a function, config.allocator is called with a string hint | Benoit Germain | 6 | -62/+67 |
2024-06-17 | Foolproofed config.allocator when it is a function | Benoit Germain | 5 | -21/+38 |
2024-06-17 | List configure settings alphabetically in documentation | Benoit Germain | 1 | -61/+64 |
2024-06-17 | Fix validation of boolean settings | Benoit Germain | 1 | -1/+1 |
2024-06-14 | Boyscouting | Benoit Germain | 6 | -375/+398 |
2024-06-14 | Wording fix: parameter → argument | Benoit Germain | 16 | -35/+35 |
2024-06-14 | Boyscouting | Benoit Germain | 4 | -7/+7 |
2024-06-14 | Handle std::ignore cases that should not be ignored | Benoit Germain | 3 | -8/+14 |
2024-06-14 | Fix deeptest.lua | Benoit Germain | 1 | -2/+6 |
2024-06-14 | Fix error handling when indexing a lane with unexpected data | Benoit Germain | 2 | -6/+18 |