Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Renamed macros_and_utils.h → macros_and_utils.hpp | Benoit Germain | 2024-10-28 | 1 | -49/+0 |
| | |||||
* | Renamed debug.h → debug.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | |||||
* | Renamed luaerrors.h → luaerrors.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | |||||
* | Sprinkling StackIndex all over the place | Benoit Germain | 2024-10-08 | 1 | -3/+2 |
| | |||||
* | Internal improvements: new strong types StackIndex and KeeperIndex | Benoit Germain | 2024-10-07 | 1 | -32/+2 |
| | |||||
* | Change linda:limit() | Benoit Germain | 2024-06-26 | 1 | -0/+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 | ||||
* | Code boyscouting | Benoit Germain | 2024-06-12 | 1 | -1/+1 |
| | |||||
* | All Lua headers included just once in _pch.h | Benoit Germain | 2024-06-11 | 1 | -11/+0 |
| | |||||
* | Boyscouting some luaG_ functions | Benoit Germain | 2024-06-07 | 1 | -27/+0 |
| | |||||
* | Use a precompiled header to speed up the build | Benoit Germain | 2024-06-07 | 1 | -3/+0 |
| | |||||
* | Reorganized debug stuff | Benoit Germain | 2024-06-07 | 1 | -151/+3 |
| | |||||
* | Converted a few more raw string pointers to std::string_view | Benoit Germain | 2024-06-06 | 1 | -7/+7 |
| | |||||
* | Fix clang-tidy issues (most notably Microsoft-specific explicit constructor ↵ | Benoit Germain | 2024-05-29 | 1 | -1/+1 |
| | | | | calls) | ||||
* | Fix LUA_ASSERT not showing the line number properly | Benoit Germain | 2024-05-17 | 1 | -2/+2 |
| | |||||
* | Shuffling code around | Benoit Germain | 2024-05-14 | 1 | -15/+0 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-13 | 1 | -21/+21 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-13 | 1 | -1/+1 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-13 | 1 | -5/+5 |
| | |||||
* | Move InterCopyContext implementation in a separate file | Benoit Germain | 2024-05-13 | 1 | -1/+1 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-02 | 1 | -1/+1 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-04-30 | 1 | -1/+1 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-04-29 | 1 | -6/+6 |
| | |||||
* | Function parameters L → L_ | Benoit Germain | 2024-04-29 | 1 | -13/+15 |
| | |||||
* | All headers reformatted with updated clang-format settings | Benoit Germain | 2024-04-29 | 1 | -37/+51 |
| | |||||
* | C++ migration: wrap all Lua error raising API functions in a [[noreturn]] ↵ | Benoit Germain | 2024-04-26 | 1 | -13/+51 |
| | | | | raise_... equivalent | ||||
* | C++ migration: using KeeperState = Unique<lua_State*> | Benoit Germain | 2024-04-24 | 1 | -2/+2 |
| | |||||
* | ASSERT_L → LUA_ASSERT | Benoit Germain | 2024-04-24 | 1 | -9/+15 |
| | |||||
* | some dead code elimination and other trifles | Benoit Germain | 2024-04-16 | 1 | -3/+1 |
| | |||||
* | C++ migration: more conversion to InterCopyContext. debugspew indentation is ↵ | Benoit Germain | 2024-04-16 | 1 | -4/+3 |
| | | | | managed by a scope object | ||||
* | C++ migration: keeper_call returns a std::optional | Benoit Germain | 2024-04-15 | 1 | -6/+38 |
| | |||||
* | C++ migration: wrap lua type values in an enum class for type safety and ↵ | Benoit Germain | 2024-04-10 | 1 | -4/+6 |
| | | | | debugging purposes | ||||
* | C++ migration: luaG_inter_copy_* now return an enum class instead of an ↵ | Benoit Germain | 2024-04-10 | 1 | -4/+4 |
| | | | | anonymous int | ||||
* | C++ migration: [[nodiscard]] everywhere. still have to check all std::ignore | Benoit Germain | 2024-04-09 | 1 | -6/+9 |
| | |||||
* | C++ migration: use strong type safety for source and destination states in ↵ | Benoit Germain | 2024-04-09 | 1 | -2/+16 |
| | | | | transfer functions | ||||
* | C++ migration: use std::jthread, std::condition_variable, std::chrono. | Benoit Germain | 2024-04-08 | 1 | -0/+5 |
| | | | | | | | | win32 pthread support is gone new setting configure.shutdown_mode for cancellation of free-running threads at shutdown. no more hard thread termination! If a thread doesn't cooperate, an error is raised. lane.status "killed" is gone lane:cancel can't force-kill. | ||||
* | C++ migration: more atomics | Benoit Germain | 2024-04-02 | 1 | -1/+1 |
| | |||||
* | C++ migration: cleanup usage of lua_error and luaL_error | Benoit Germain | 2024-03-28 | 1 | -4/+18 |
| | |||||
* | C++ migration:: new helper template lua_newuserdatauv | Benoit Germain | 2024-03-27 | 1 | -0/+6 |
| | |||||
* | C++ migration: new helper templates lua_tolightuserdata and lua_tofulluserdata | Benoit Germain | 2024-03-27 | 1 | -2/+18 |
| | |||||
* | C++ migration: templated lua_touserdata | Benoit Germain | 2024-03-26 | 1 | -0/+7 |
| | |||||
* | C++ migration: revamped stack checking macros | Benoit Germain | 2024-03-25 | 1 | -39/+77 |
| | |||||
* | C++ migration: STACK_GROW is no longer a macro, sanitized and fixed warnings ↵ | Benoit Germain | 2024-03-22 | 1 | -1/+6 |
| | | | | in keeper.cpp | ||||
* | C++ migration: REGISTRY_SET and REGISTRY_GET are gone, welcome templates and ↵ | Benoit Germain | 2024-03-21 | 1 | -14/+0 |
| | | | | lambdas | ||||
* | C++ migration: UniqueKey | Benoit Germain | 2024-03-20 | 1 | -2/+2 |
| | |||||
* | C++ migration: bool_t → bool | Benoit Germain | 2024-03-20 | 1 | -3/+3 |
| | |||||
* | C++ migration: MSVC-specific "inline" is gone | Benoit Germain | 2024-03-19 | 1 | -5/+0 |
| | |||||
* | C++ migration: buildfixes | Benoit Germain | 2024-03-19 | 1 | -7/+7 |
| | | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C" | ||||
* | new .internal_allocator configuration IUNTESTED) | Benoit Germain | 2023-08-09 | 1 | -3/+0 |
| | | | | new configuration option .internal_allocator to help LuaJIT users. THIS IS YET UNTESTED, USE AT YOUR OWN RISKS. | ||||
* | moonjit support | Benoit Germain | 2022-03-09 | 1 | -15/+5 |
| | |||||
* | Make allocator threadsafe by default when running LuaJIT, because LuaJIT ↵ | Benoit Germain | 2022-02-21 | 1 | -0/+3 |
| | | | | allocator is not |