aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Sprinkling StackIndex all over the placeBenoit Germain2024-10-081-34/+34
|
* Code boyscoutingBenoit Germain2024-07-301-4/+4
|
* get_debug_threadname → get_threadnameBenoit Germain2024-07-041-1/+1
|
* It is possible to index and join a suspended coroutine laneBenoit Germain2024-07-031-3/+3
|
* Add minimal coroutine support: no doc, no error handling, no cancellation ↵Benoit Germain2024-07-031-6/+22
| | | | handling (yet)
* A small step toward coroutine-based lanesBenoit Germain2024-07-011-1/+3
|
* BoyscoutingBenoit Germain2024-06-261-7/+7
|
* Make lanes.gen stricter on base librariesBenoit Germain2024-06-261-0/+1
|
* Wording fix: parameter → argumentBenoit Germain2024-06-141-1/+1
|
* lua_pushliteral -> luaG_pushstringBenoit Germain2024-06-141-6/+6
|
* A small step toward making clang happyBenoit Germain2024-06-131-0/+9
|
* More application of the coding rulesBenoit Germain2024-06-111-7/+7
|
* linda:send() returns nil,<something> in case of errorBenoit Germain2024-06-101-2/+2
|
* luaG_typename returns a std::string_viewBenoit Germain2024-06-101-5/+5
|
* Improvements in compat.hBenoit Germain2024-06-071-2/+2
|
* Boyscouting some luaG_ functionsBenoit Germain2024-06-071-16/+14
|
* Use a precompiled header to speed up the buildBenoit Germain2024-06-071-2/+1
|
* Converted a few more raw string pointers to std::string_viewBenoit Germain2024-06-061-2/+4
|
* Modernize compatBenoit Germain2024-06-051-17/+17
|
* Moved lanes.sleep implementation to the C-sideBenoit Germain2024-06-031-5/+33
|
* Improved multi-keeper testsBenoit Germain2024-05-311-1/+1
|
* Keeper management modernisation and improvementsBenoit Germain2024-05-301-41/+2
| | | | | | | * 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 Germain2024-05-291-9/+9
| | | | calls)
* Organized namespace 'state'Benoit Germain2024-05-291-2/+2
|
* Moved implementation of lanes.nameof in a separate fileBenoit Germain2024-05-291-6/+7
|
* Modernize serialize_requireBenoit Germain2024-05-291-1/+1
|
* PushDeepProxy internal changeBenoit Germain2024-05-291-10/+2
|
* New Lanes finalizer API lanes.finally()Benoit Germain2024-05-281-0/+1
|
* Optional Decoda support (disabled by default)Benoit Germain2024-05-271-0/+3
|
* More string_viewBenoit Germain2024-05-271-1/+1
|
* 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