Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Renamed allocator.h → allocator.hpp, cancel.h → cancel.hpp, keeper.h → ↵ | Benoit Germain | 2024-10-28 | 1 | -60/+0 |
| | | | | keeper.hpp, tools.h → tools.hpp | ||||
* | Renamed uniquekey.h → uniquekey.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | |||||
* | Renamed macros_and_utils.h → macros_and_utils.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | |||||
* | Some internal function name changes + slight lane:__index optimization | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | |||||
* | Modernized some more trifles | Benoit Germain | 2024-10-24 | 1 | -0/+5 |
| | |||||
* | Make Lanes crash on purpose at shutdown if some lanes still run | Benoit Germain | 2024-06-28 | 1 | -0/+1 |
| | |||||
* | Modernize cancel code some more | Benoit Germain | 2024-06-11 | 1 | -10/+7 |
| | |||||
* | Move some cancel-related code around | Benoit Germain | 2024-06-11 | 1 | -2/+2 |
| | |||||
* | All Lua headers included just once in _pch.h | Benoit Germain | 2024-06-11 | 1 | -11/+0 |
| | |||||
* | Use a precompiled header to speed up the build | Benoit Germain | 2024-06-07 | 1 | -2/+0 |
| | |||||
* | Moved lanes.sleep implementation to the C-side | Benoit Germain | 2024-06-03 | 1 | -0/+1 |
| | |||||
* | More string_view | Benoit Germain | 2024-05-20 | 1 | -1/+3 |
| | |||||
* | Linda API changes | Benoit Germain | 2024-05-13 | 1 | -1/+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 | ||||
* | Progressively applying the coding rules | Benoit Germain | 2024-04-29 | 1 | -2/+2 |
| | |||||
* | Function parameters L → L_ | Benoit Germain | 2024-04-29 | 1 | -4/+4 |
| | |||||
* | All headers reformatted with updated clang-format settings | Benoit Germain | 2024-04-29 | 1 | -2/+3 |
| | |||||
* | C++ migration: wrap all Lua error raising API functions in a [[noreturn]] ↵ | Benoit Germain | 2024-04-26 | 1 | -1/+1 |
| | | | | raise_... equivalent | ||||
* | Formalize a few coding style rules, start to enforce them for constants | Benoit Germain | 2024-04-26 | 1 | -3/+3 |
| | |||||
* | C++ migration: split UniqueKey into UniqueKey+RegistryUniqueKey | Benoit Germain | 2024-04-24 | 1 | -1/+1 |
| | |||||
* | some dead code elimination and other trifles | Benoit Germain | 2024-04-16 | 1 | -7/+5 |
| | |||||
* | C++ migration: keeper_call returns a std::optional | Benoit Germain | 2024-04-15 | 1 | -1/+1 |
| | |||||
* | C++ migration: [[nodiscard]] everywhere. still have to check all std::ignore | Benoit Germain | 2024-04-09 | 1 | -2/+2 |
| | |||||
* | C++ migration: use std::jthread, std::condition_variable, std::chrono. | Benoit Germain | 2024-04-08 | 1 | -3/+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: all enums are enum class | Benoit Germain | 2024-03-29 | 1 | -8/+8 |
| | |||||
* | C++ migration: Lane is a proper class with overloaded operator new/delete | Benoit Germain | 2024-03-29 | 1 | -1/+1 |
| | |||||
* | C++ migration: improved UniqueKey interface | Benoit Germain | 2024-03-28 | 1 | -4/+1 |
| | |||||
* | C++ migration: lots of noise, but it's only some minor code cleanup | Benoit Germain | 2024-03-28 | 1 | -3/+3 |
| | |||||
* | C++ migration: cleanup usage of lua_error and luaL_error | Benoit Germain | 2024-03-28 | 1 | -4/+4 |
| | |||||
* | C++ migration: ThreadStatus, CancelRequest and CancelResult are enum class | Benoit Germain | 2024-03-20 | 1 | -9/+9 |
| | |||||
* | C++ migration: removed most typedef, removed uint_t | Benoit Germain | 2024-03-20 | 1 | -5/+5 |
| | |||||
* | C++ migration: UniqueKey | Benoit Germain | 2024-03-20 | 1 | -3/+3 |
| | |||||
* | C++ migration: bool_t → bool | Benoit Germain | 2024-03-20 | 1 | -1/+1 |
| | |||||
* | C++ migration: buildfixes | Benoit Germain | 2024-03-19 | 1 | -4/+7 |
| | | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C" | ||||
* | Changed all indentations to all whitespaces | Benoit Germain | 2022-02-07 | 1 | -16/+16 |
| | | | | Tabs mess up alignment of stack contents comments, so I'm done with them. | ||||
* | Lane cancellation rework | Benoit Germain | 2019-04-26 | 1 | -3/+12 |
| | | | | | opt.cancelstep is gone, hook is installed by lane:cancel() if requested lane:cancel() rework (see doc) | ||||
* | Moved cancellation code in separate files | Benoit Germain | 2019-04-22 | 1 | -0/+57 |