Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | namespace tweaks | Benoit Germain | 2024-05-27 | 1 | -2/+2 |
| | |||||
* | More string_view + improved DEBUGSPEW output | Benoit Germain | 2024-05-27 | 1 | -1/+1 |
| | |||||
* | DEBUGSPEW_PARAM_COMMA(Universe* U_) | Benoit Germain | 2024-05-23 | 1 | -1/+1 |
| | |||||
* | DEBUGSPEW fprintf(stderr) → std::cerr | Benoit Germain | 2024-05-22 | 1 | -5/+5 |
| | |||||
* | lua503_getfield → strong typed luaG_getfield | Benoit Germain | 2024-05-22 | 1 | -17/+14 |
| | |||||
* | Lane::debugName is a std::string_view | Benoit Germain | 2024-05-20 | 1 | -1/+1 |
| | |||||
* | More string_view | Benoit Germain | 2024-05-20 | 1 | -3/+3 |
| | |||||
* | Shuffling code around | Benoit Germain | 2024-05-14 | 1 | -1/+221 |
| | |||||
* | Move Lane implementation in a separate file | Benoit Germain | 2024-05-14 | 1 | -1/+1 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-13 | 1 | -33/+33 |
| | |||||
* | Move InterCopyContext implementation in a separate file | Benoit Germain | 2024-05-13 | 1 | -3/+0 |
| | |||||
* | Linda API changes | Benoit Germain | 2024-05-13 | 1 | -2/+1 |
| | | | | | * timeout clarifications (negative values are no longer accepted, use nil instead) * linda(send, linda.null, key, ...) removed, if you want to send a nil, just do it as usual | ||||
* | Some more code refactorization | Benoit Germain | 2024-05-13 | 1 | -23/+93 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-02 | 1 | -1/+1 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-04-30 | 1 | -5/+4 |
| | |||||
* | Function parameters L → L_ | Benoit Germain | 2024-04-29 | 1 | -16/+16 |
| | |||||
* | Formalize a few coding style rules, start to enforce them for constants | Benoit Germain | 2024-04-26 | 1 | -8/+8 |
| | |||||
* | ASSERT_L → LUA_ASSERT | Benoit Germain | 2024-04-24 | 1 | -2/+2 |
| | |||||
* | C++ migration: split UniqueKey into UniqueKey+RegistryUniqueKey | Benoit Germain | 2024-04-24 | 1 | -2/+2 |
| | |||||
* | some dead code elimination and other trifles | Benoit Germain | 2024-04-16 | 1 | -5/+5 |
| | |||||
* | C++ migration: use strong type safety for source and destination states in ↵ | Benoit Germain | 2024-04-09 | 1 | -4/+4 |
| | | | | transfer functions | ||||
* | C++ migration: still more threading code cleanup. 'sudo' global moved in the ↵ | Benoit Germain | 2024-04-09 | 1 | -0/+29 |
| | | | | Universe | ||||
* | C++ migration: parallelize lane setup and OS thread warmup | Benoit Germain | 2024-03-29 | 1 | -1/+1 |
| | |||||
* | C++ migration: improved UniqueKey interface | Benoit Germain | 2024-03-28 | 1 | -8/+5 |
| | |||||
* | C++ migration: new helper templates lua_tolightuserdata and lua_tofulluserdata | Benoit Germain | 2024-03-27 | 1 | -7/+13 |
| | |||||
* | C++ migration: templated lua_touserdata | Benoit Germain | 2024-03-26 | 1 | -1/+1 |
| |