Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move Lane implementation in a separate file | Benoit Germain | 2024-05-14 | 1 | -114/+0 |
| | |||||
* | 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 | ||||
* | Some more code refactorization | Benoit Germain | 2024-05-13 | 1 | -1/+9 |
| | |||||
* | New lane generator option opt_tbl.name | Benoit Germain | 2024-05-13 | 1 | -0/+2 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-02 | 1 | -8/+8 |
| | |||||
* | Progressively applying the coding rules | Benoit Germain | 2024-05-02 | 1 | -6/+6 |
| | |||||
* | Function parameters L → L_ | Benoit Germain | 2024-04-29 | 1 | -2/+2 |
| | |||||
* | All headers reformatted with updated clang-format settings | Benoit Germain | 2024-04-29 | 1 | -2/+1 |
| | |||||
* | Formalize a few coding style rules, start to enforce them for constants | Benoit Germain | 2024-04-26 | 1 | -2/+2 |
| | |||||
* | C++ migration: push_thread_status converted to a Lane class method | Benoit Germain | 2024-04-24 | 1 | -2/+1 |
| | |||||
* | 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 | -1/+1 |
| | |||||
* | C++ migration: fixed a few std::ignore | Benoit Germain | 2024-04-10 | 1 | -1/+1 |
| | |||||
* | C++ migration: [[nodiscard]] everywhere. still have to check all std::ignore | Benoit Germain | 2024-04-09 | 1 | -4/+7 |
| | |||||
* | C++ migration: use strong type safety for source and destination states in ↵ | Benoit Germain | 2024-04-09 | 1 | -2/+2 |
| | | | | transfer functions | ||||
* | C++ migration: lanes.now_secs uses std::chrono::sytem_clock. plus more enum ↵ | Benoit Germain | 2024-04-08 | 1 | -5/+21 |
| | | | | class cleanup. | ||||
* | C++ migration: use std::jthread, std::condition_variable, std::chrono. | Benoit Germain | 2024-04-08 | 1 | -29/+14 |
| | | | | | | | | 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: parallelize lane setup and OS thread warmup | Benoit Germain | 2024-03-29 | 1 | -1/+4 |
| | |||||
* | C++ migration: Lane is a proper class with overloaded operator new/delete | Benoit Germain | 2024-03-29 | 1 | -15/+30 |
| | |||||
* | C++ migration: improved UniqueKey interface | Benoit Germain | 2024-03-28 | 1 | -11/+3 |
| | |||||
* | C++ migration: less kludgy Linda name management with a std::variant | Benoit Germain | 2024-03-28 | 1 | -1/+1 |
| | |||||
* | C++ migration: new helper templates lua_tolightuserdata and lua_tofulluserdata | Benoit Germain | 2024-03-27 | 1 | -1/+1 |
| | |||||
* | C++ migration: templated lua_touserdata | Benoit Germain | 2024-03-26 | 1 | -1/+1 |
| | |||||
* | C++ migration: revamped stack checking macros | Benoit Germain | 2024-03-25 | 1 | -4/+3 |
| | |||||
* | C++ migration: REGISTRY_SET and REGISTRY_GET are gone, welcome templates and ↵ | Benoit Germain | 2024-03-21 | 1 | -1/+1 |
| | | | | lambdas | ||||
* | C++ migration: ThreadStatus, CancelRequest and CancelResult are enum class | Benoit Germain | 2024-03-20 | 1 | -6/+6 |
| | |||||
* | C++ migration: removed most typedef, removed uint_t | Benoit Germain | 2024-03-20 | 1 | -4/+3 |
| | |||||
* | C++ migration: bool_t → bool | Benoit Germain | 2024-03-20 | 1 | -1/+1 |
| | |||||
* | C++ migration: NULL → nullptr | Benoit Germain | 2024-03-19 | 1 | -3/+3 |
| | |||||
* | C++ migration: buildfixes | Benoit Germain | 2024-03-19 | 1 | -11/+9 |
| | | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C" | ||||
* | moonjit support | Benoit Germain | 2022-03-09 | 1 | -2/+3 |
| | |||||
* | Changed all indentations to all whitespaces | Benoit Germain | 2022-02-07 | 1 | -55/+55 |
| | | | | Tabs mess up alignment of stack contents comments, so I'm done with them. | ||||
* | Lane cancellation rework | Benoit Germain | 2019-04-26 | 1 | -0/+3 |
| | | | | | 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 | -23/+1 |
| | |||||
* | Internal code tweaks | Benoit Germain | 2018-11-19 | 1 | -3/+2 |
| | | | | | | * Registry access code utility macros * CONFIG_REGKEY and LOOKUP_REGKEY are now lightuserdata instead of strings * Stack checking debug macros improvements | ||||
* | Deep userdata must embed DeepPrelude to save an allocation (also changes ↵ | Benoit Germain | 2018-11-15 | 1 | -2/+0 |
| | | | | Deep protocol) | ||||
* | split linda code in a separate file | Benoit Germain | 2018-11-15 | 1 | -0/+117 |