aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* More string_viewBenoit Germain2024-05-271-1/+1
|
* namespace tweaksBenoit Germain2024-05-271-14/+16
|
* Process upvalues equal to _G in Lua51 as in other flavorsBenoit Germain2024-05-241-8/+5
|
* DEBUGSPEW_PARAM_COMMA(Universe* U_)Benoit Germain2024-05-231-3/+3
|
* DEBUGSPEW fprintf(stderr) → std::cerrBenoit Germain2024-05-221-22/+22
|
* lua503_getfield → strong typed luaG_getfieldBenoit Germain2024-05-221-8/+7
|
* Lane::debugName is a std::string_viewBenoit Germain2024-05-201-10/+10
|
* More string_viewBenoit Germain2024-05-201-5/+4
|
* Fixed forgotten int → LuaErrorBenoit Germain2024-05-201-3/+4
|
* Start using string_viewBenoit Germain2024-05-201-4/+4
|
* Minor code tweaksBenoit Germain2024-05-171-67/+76
|
* Error reporting revampBenoit Germain2024-05-171-20/+22
| | | | | | * set_error_reporting() is gone * new lane generator setting error_reporting_level * basic/extended stack trace is selectable at runtime instead of compile-time
* Shuffling code aroundBenoit Germain2024-05-141-81/+3
|
* Progressively applying the coding rulesBenoit Germain2024-05-141-6/+6
|
* Move Lane implementation in a separate fileBenoit Germain2024-05-141-892/+2
|
* Moved Lane tracking implementation in a separate fileBenoit Germain2024-05-141-83/+8
|
* Progressively applying the coding rulesBenoit Germain2024-05-131-44/+44
|
* Progressively applying the coding rulesBenoit Germain2024-05-131-331/+331
|
* Move InterCopyContext implementation in a separate fileBenoit Germain2024-05-131-1/+80
|
* Linda API changesBenoit Germain2024-05-131-20/+26
| | | | | * 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 refactorizationBenoit Germain2024-05-131-117/+18
|
* New lane generator option opt_tbl.nameBenoit Germain2024-05-131-52/+82
|
* Fix handling of error occuring during lane setupBenoit Germain2024-05-031-2/+6
|
* Some code factorizationBenoit Germain2024-05-031-43/+27
|
* Progressively applying the coding rulesBenoit Germain2024-05-021-67/+67
|
* Progressively applying the coding rulesBenoit Germain2024-05-021-33/+33
|
* Progressively applying the coding rulesBenoit Germain2024-04-301-573/+464
|
* Progressively applying the coding rulesBenoit Germain2024-04-291-25/+25
|
* Function parameters L → L_Benoit Germain2024-04-291-412/+411
|
* C++ migration: wrap all Lua error raising API functions in a [[noreturn]] ↵Benoit Germain2024-04-261-24/+24
| | | | raise_... equivalent
* Expose nil sentinel as lanes.nullBenoit Germain2024-04-261-2/+1
|
* Formalize a few coding style rules, start to enforce them for constantsBenoit Germain2024-04-261-83/+87
|
* C++ migration: using KeeperState = Unique<lua_State*>Benoit Germain2024-04-241-9/+9
|
* C++ migration: push_thread_status converted to a Lane class methodBenoit Germain2024-04-241-16/+18
|
* ASSERT_L → LUA_ASSERTBenoit Germain2024-04-241-17/+17
|
* C++ migration: split UniqueKey into UniqueKey+RegistryUniqueKeyBenoit Germain2024-04-241-5/+5
|
* some dead code elimination and other triflesBenoit Germain2024-04-161-177/+152
|
* C++ migration: more conversion to InterCopyContext. debugspew indentation is ↵Benoit Germain2024-04-161-31/+30
| | | | managed by a scope object
* C++ migration: inter-state transfer managed by a new class InterCopyContextBenoit Germain2024-04-151-1/+1
|
* C++ migration: deep userdata API rework. bye bye idfunc, hello DeepFactoryBenoit Germain2024-04-151-4/+2
|
* C++ migration: wrap lua type values in an enum class for type safety and ↵Benoit Germain2024-04-101-4/+9
| | | | debugging purposes
* C++ migration: luaG_inter_copy_* now return an enum class instead of an ↵Benoit Germain2024-04-101-18/+18
| | | | anonymous int
* C++ migration: fixed a few std::ignoreBenoit Germain2024-04-101-7/+7
|
* C++ migration: [[nodiscard]] everywhere. still have to check all std::ignoreBenoit Germain2024-04-091-26/+29
|
* C++ migration: use strong type safety for source and destination states in ↵Benoit Germain2024-04-091-10/+10
| | | | transfer functions
* C++ migration: simpler one-time initializationsBenoit Germain2024-04-091-37/+14
|
* C++ migration: still more threading code cleanup. 'sudo' global moved in the ↵Benoit Germain2024-04-091-29/+3
| | | | Universe
* C++ migration: YIELD() → std::this_thread::yield. plus more threading code ↵Benoit Germain2024-04-091-2/+2
| | | | cleanup
* C++ migration: lanes.now_secs uses std::chrono::sytem_clock. plus more enum ↵Benoit Germain2024-04-081-37/+37
| | | | class cleanup.
* C++ migration: use std::jthread, std::condition_variable, std::chrono.Benoit Germain2024-04-081-214/+123
| | | | | | | | 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.