| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Improve table and userdata conversions | Benoit Germain | 2025-09-20 | 1 | -0/+16 |
| | | | | | | | | | * 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 | ||||
| * | Added Lua 5.5 support | Benoit Germain | 2025-07-04 | 1 | -1/+1 |
| | | | | | * some unit tests fail/segfault/freeze, but that could be because Lua 5.5 is still in beta yet | ||||
| * | Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!) | Benoit Germain | 2025-07-04 | 1 | -28/+28 |
| | | |||||
| * | Better protection of selfdestruct chain at universe shutdown | Benoit Germain | 2025-06-24 | 1 | -15/+18 |
| | | |||||
| * | Move ProtectedAllocator::Protected_lua_Alloc in universe.cpp | Benoit Germain | 2025-04-29 | 1 | -0/+10 |
| | | |||||
| * | Minor internal tweaks in shutdown code | Benoit Germain | 2025-04-28 | 1 | -3/+9 |
| | | |||||
| * | New feature: Linda periodical cancellation checks | Benoit Germain | 2025-04-18 | 1 | -0/+8 |
| | | | | | | | | * 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) | ||||
| * | Circumvent MSVC possible bug causing a crash in optimized builds | Benoit Germain | 2025-03-17 | 1 | -1/+3 |
| | | |||||
| * | Fix test "allocator = <bad C function>" not failing against LuaJIT like it ↵ | Benoit Germain | 2025-03-17 | 1 | -5/+5 |
| | | | | | should | ||||
| * | Raise a regular Lua error instead of throwing a C++ std::logic_error ↵ | Benoit Germain | 2025-03-17 | 1 | -10/+36 |
| | | | | | exception in Universe::UniverseGC | ||||
| * | lanes/core.[so|dll] → lanes_core.[so|dll] | Benoit Germain | 2025-03-14 | 1 | -1/+1 |
| | | |||||
| * | Some constitude tweaks | Benoit Germain | 2024-12-17 | 1 | -1/+1 |
| | | |||||
| * | Improved DeepPrelude architecture | Benoit Germain | 2024-12-09 | 1 | -20/+5 |
| | | |||||
| * | Internal rework of an enum bad practice usage | Benoit Germain | 2024-12-03 | 1 | -3/+3 |
| | | |||||
| * | More [[nodiscard]] boyscouting | Benoit Germain | 2024-11-20 | 1 | -3/+6 |
| | | |||||
| * | AllocatorDefinition implementation improvements | Benoit Germain | 2024-11-20 | 1 | -6/+3 |
| | | |||||
| * | Cleaning up guano | Benoit Germain | 2024-11-13 | 1 | -1/+1 |
| | | | | | Converted volatile Lane::cancelRequest to std::atomic | ||||
| * | Renamed intercopycontext.h → intercopycontext.hpp, state.h → state.hpp | Benoit Germain | 2024-10-28 | 1 | -2/+2 |
| | | |||||
| * | Renamed lane.h → lane.hpp, linda.h → linda.hpp, threading.h → ↵ | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | | | | threading.hpp | ||||
| * | Renamed universe.h → universe.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | |||||
| * | Renamed allocator.h → allocator.hpp, cancel.h → cancel.hpp, keeper.h → ↵ | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | | | | keeper.hpp, tools.h → tools.hpp | ||||
| * | Renamed _pch.h → _pch.hpp, deep.h → deep.hpp, lanes.h → lanes.hpp | Benoit Germain | 2024-10-28 | 1 | -2/+2 |
| | | |||||
| * | Modernized some more trifles | Benoit Germain | 2024-10-24 | 1 | -1/+1 |
| | | |||||
| * | Fix/suppress MSVC /Wall warnings | Benoit Germain | 2024-10-16 | 1 | -1/+1 |
| | | |||||
| * | Sprinkling StackIndex all over the place | Benoit Germain | 2024-10-08 | 1 | -24/+23 |
| | | |||||
| * | Internal improvements: new strong types StackIndex and KeeperIndex | Benoit Germain | 2024-10-07 | 1 | -1/+1 |
| | | |||||
| * | lanes.finally() handler decides whether to thow or freeze | Benoit Germain | 2024-07-01 | 1 | -11/+13 |
| | | |||||
| * | Make Lanes crash on purpose at shutdown if some lanes still run | Benoit Germain | 2024-06-28 | 1 | -15/+19 |
| | | |||||
| * | Make lanes.gen stricter on base libraries | Benoit Germain | 2024-06-26 | 1 | -1/+1 |
| | | |||||
| * | Revert overzealous upvalue check on on_state_create | Benoit Germain | 2024-06-20 | 1 | -15/+5 |
| | | |||||
| * | Fix on_state_create incorrectly rejecting Lua functions with only _ENV as ↵ | Benoit Germain | 2024-06-19 | 1 | -7/+17 |
| | | | | | upvalue | ||||
| * | Improved on_state_create implementation | Benoit Germain | 2024-06-19 | 1 | -1/+78 |
| | | | | | | * modernized implementation uses a std::variant * detect Lua functions with upvalues earlier | ||||
| * | Give a chance to config.allocator to provide a specific allocator for ↵ | Benoit Germain | 2024-06-18 | 1 | -7/+28 |
| | | | | | internal stuff | ||||
| * | Moved AllocatorDefinition in a lanes namespace | Benoit Germain | 2024-06-18 | 1 | -2/+2 |
| | | |||||
| * | Foolproofed config.allocator when it is a function | Benoit Germain | 2024-06-17 | 1 | -13/+23 |
| | | |||||
| * | lua_pushliteral -> luaG_pushstring | Benoit Germain | 2024-06-14 | 1 | -1/+1 |
| | | |||||
| * | Move some cancel-related code around | Benoit Germain | 2024-06-11 | 1 | -2/+2 |
| | | |||||
| * | Removed .demote_full_userdata | Benoit Germain | 2024-06-10 | 1 | -4/+0 |
| | | |||||
| * | Boyscouting some luaG_ functions | Benoit Germain | 2024-06-07 | 1 | -5/+5 |
| | | |||||
| * | Use a precompiled header to speed up the build | Benoit Germain | 2024-06-07 | 1 | -2/+1 |
| | | |||||
| * | Modernize compat | Benoit Germain | 2024-06-05 | 1 | -5/+5 |
| | | |||||
| * | New global setting "strip_functions" | Benoit Germain | 2024-06-03 | 1 | -0/+6 |
| | | |||||
| * | Keeper management modernisation and improvements | Benoit Germain | 2024-05-30 | 1 | -149/+61 |
| | | | | | | | | * use a std::variant to manage the distinction between one or more keeper states. Use std::unique_ptr<Keeper[]> to manage the multiple keeper case. * setting "nb_keepers" renamed "nb_user_keepers", to indicate these are in addition to internal keeper #0 used for timers. * stricter lanes.linda() argument checking. group is imposed if more than one keeper is used. * more tests | ||||
| * | Fix clang-tidy issues (most notably Microsoft-specific explicit constructor ↵ | Benoit Germain | 2024-05-29 | 1 | -17/+23 |
| | | | | | calls) | ||||
| * | Organized namespace 'state' | Benoit Germain | 2024-05-29 | 1 | -2/+2 |
| | | |||||
| * | Modernize serialize_require | Benoit Germain | 2024-05-29 | 1 | -1/+1 |
| | | |||||
| * | Fix bad uses of STRINGVIEW_FMT | Benoit Germain | 2024-05-29 | 1 | -1/+1 |
| | | |||||
| * | New Lanes finalizer API lanes.finally() | Benoit Germain | 2024-05-28 | 1 | -1/+39 |
| | | |||||
| * | Sprinkle a bit of std::ranges::iota_view | Benoit Germain | 2024-05-28 | 1 | -6/+9 |
| | | |||||
| * | Optional Decoda support (disabled by default) | Benoit Germain | 2024-05-27 | 1 | -1/+5 |
| | | |||||
