aboutsummaryrefslogtreecommitdiff
path: root/src/lane.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Code boyscoutingBenoit Germain2024-07-301-22/+22
|
* Internal refactorization to properly handle lua_resume idiosyncrasiesBenoit Germain2024-07-291-166/+259
|
* get_debug_threadname → get_threadnameBenoit Germain2024-07-041-4/+4
|
* Fix finalizers in coroutine lanesBenoit Germain2024-07-041-2/+4
|
* Error handling in coroutine lanesBenoit Germain2024-07-041-22/+20
|
* It is possible to index and join a suspended coroutine laneBenoit Germain2024-07-031-13/+52
|
* Renamed set_debug_threadname → lane_threadname (can also read the current ↵Benoit Germain2024-07-031-17/+31
| | | | name now)
* Add minimal coroutine support: no doc, no error handling, no cancellation ↵Benoit Germain2024-07-031-24/+118
| | | | handling (yet)
* linda:limit() and linda:set() return a second value, a string representing ↵Benoit Germain2024-06-271-1/+1
| | | | the fill status
* Wording fix: parameter → argumentBenoit Germain2024-06-141-1/+1
|
* BoyscoutingBenoit Germain2024-06-141-4/+4
|
* Fix error handling when indexing a lane with unexpected dataBenoit Germain2024-06-141-5/+15
|
* lua_pushliteral -> luaG_pushstringBenoit Germain2024-06-141-12/+12
|
* More fixes to make clang happyBenoit Germain2024-06-141-4/+10
|
* A small step toward making clang happyBenoit Germain2024-06-131-17/+18
|
* Code boyscoutingBenoit Germain2024-06-121-5/+5
|
* Modernize cancel code some moreBenoit Germain2024-06-111-7/+10
|
* Move some cancel-related code aroundBenoit Germain2024-06-111-0/+65
|
* More application of the coding rulesBenoit Germain2024-06-111-2/+2
|
* New lane:__close does a lane:join()Benoit Germain2024-06-111-5/+26
|
* Fixes and improvements to lane:join()Benoit Germain2024-06-111-2/+12
| | | | | * fix: returns nil,cancel_error when lane was cancelled * improvement: enforce non-nil first return value of lane body when using lane:join() to obtain the results
* luaG_typename returns a std::string_viewBenoit Germain2024-06-101-2/+2
|
* Boyscouting some luaG_ functionsBenoit Germain2024-06-071-11/+11
|
* Use a precompiled header to speed up the buildBenoit Germain2024-06-071-1/+1
|
* Converted a few more raw string pointers to std::string_viewBenoit Germain2024-06-061-2/+2
|
* Modernize compatBenoit Germain2024-06-051-16/+16
|
* lua_absindex → luaG_absindex for inliningBenoit Germain2024-06-041-1/+1
|
* Keeper management modernisation and improvementsBenoit Germain2024-05-301-1/+1
| | | | | | | * 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-1/+1
| | | | calls)
* Fix bad string_view constructionBenoit Germain2024-05-291-1/+1
|
* Moved implementation of lanes.nameof in a separate fileBenoit Germain2024-05-291-2/+2
|
* Fix bad uses of STRINGVIEW_FMTBenoit Germain2024-05-291-3/+3
|
* Handle LUA_ERRFILEBenoit Germain2024-05-281-1/+1
|
* Optional Decoda support (disabled by default)Benoit Germain2024-05-271-10/+10
|
* namespace tweaksBenoit Germain2024-05-271-38/+46
|
* Process upvalues equal to _G in Lua51 as in other flavorsBenoit Germain2024-05-241-13/+7
|
* DEBUGSPEW fprintf(stderr) → std::cerrBenoit Germain2024-05-221-7/+7
|
* lua503_getfield → strong typed luaG_getfieldBenoit Germain2024-05-221-1/+1
|
* More string_viewBenoit Germain2024-05-211-19/+19
|
* Lane::debugName is a std::string_viewBenoit Germain2024-05-201-10/+8
|
* Minor code tweaksBenoit Germain2024-05-171-1/+1
|
* Error reporting revampBenoit Germain2024-05-171-191/+237
| | | | | | * set_error_reporting() is gone * new lane generator setting error_reporting_level * basic/extended stack trace is selectable at runtime instead of compile-time
* Fix bad assert when raising a non-string errorBenoit Germain2024-05-171-39/+54
|
* Lane::close()Benoit Germain2024-05-171-7/+4
|
* Strong typed Lua thread statusBenoit Germain2024-05-171-37/+37
|
* Shuffling code aroundBenoit Germain2024-05-141-0/+1
|
* Progressively applying the coding rulesBenoit Germain2024-05-141-3/+3
|
* Move Lane implementation in a separate fileBenoit Germain2024-05-141-0/+916