| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!) | Benoit Germain | 2025-07-04 | 1 | -46/+46 |
| | | |||||
| * | Fix more issues related to suspended coroutines and join/indexing operations | Benoit Germain | 2025-07-03 | 1 | -118/+157 |
| | | | | | | * indexing and joining a suspended lane closes the coroutine, causing the termination of the lane * properly close coroutine to-be-closed variables on interruption | ||||
| * | Clarified interactions between join() and coroutines | Benoit Germain | 2025-07-01 | 1 | -28/+48 |
| | | |||||
| * | Preparation for lane:close() and correct to-be-closed variables | Benoit Germain | 2025-06-26 | 1 | -17/+62 |
| | | | | | | | | | * lane:join() can no longer be used to read yielded values * same with lane indexing * stub for lane:close(), similar to coroutine.close() (not implemented yet) * preparing tests for to-be-closed variables in yielded coroutine lanes * yielded lanes unlock and terminate properly at Lanes shutdown | ||||
| * | Minor code refacto (Lane::waitForCompletion) | Benoit Germain | 2025-06-25 | 1 | -26/+14 |
| | | |||||
| * | Change lane:join() return values | Benoit Germain | 2025-06-05 | 1 | -14/+20 |
| | | | | | | | * when no error is raised in the lane, lane:join() now precedes the lane returned values with true * lane body is no longer forced to return something when used with join() * adjusted all relevant unit tests accordingly | ||||
| * | Thread priority rework | Benoit Germain | 2025-05-07 | 1 | -2/+2 |
| | | | | | | | | * thread priorities can now be set using the native range of values, if desired. * thread API errors cause a Lua error instead of aborting the program. * new function lanes.thread_priority_range(), to query the valid range of priorities. * unit tests for all of the above | ||||
| * | Remove a useless mutex guard on lane setf-destruct | Benoit Germain | 2025-04-28 | 1 | -2/+0 |
| | | |||||
| * | Minor internal tweaks in shutdown code | Benoit Germain | 2025-04-28 | 1 | -4/+8 |
| | | |||||
| * | Raise a regular Lua error instead of throwing a C++ std::logic_error ↵ | Benoit Germain | 2025-03-17 | 1 | -0/+6 |
| | | | | | exception in Universe::UniverseGC | ||||
| * | New compatibility helper luaG_rawget | Benoit Germain | 2025-03-06 | 1 | -8/+4 |
| | | |||||
| * | All enums are [[nodiscard]] | Benoit Germain | 2025-02-05 | 1 | -0/+1 |
| | | |||||
| * | Minor internal code tweaks | Benoit Germain | 2025-02-05 | 1 | -2/+2 |
| | | | | | | | | * mark all eligible classes Final * new TableIndex strong type * buildfixes for HAVE_DEBUGSPEW() * overridden virtual destructors tagged as such | ||||
| * | Unit tests for thread name | Benoit Germain | 2024-12-16 | 1 | -6/+6 |
| | | |||||
| * | Fix lane {.name} setting application | Benoit Germain | 2024-12-13 | 1 | -25/+34 |
| | | | | | The name of the lane was applied to the thread of the lane's creator instead of the lane's thread | ||||
| * | Better validation of lane:cancel() arguments | Benoit Germain | 2024-12-04 | 1 | -0/+1 |
| | | |||||
| * | Internal rework of an enum bad practice usage | Benoit Germain | 2024-12-03 | 1 | -3/+3 |
| | | |||||
| * | More [[nodiscard]] boyscouting | Benoit Germain | 2024-11-20 | 1 | -7/+14 |
| | | |||||
| * | Cleaning up guano | Benoit Germain | 2024-11-13 | 1 | -3/+4 |
| | | | | | | * Lane::waiting on does not need to be volatile or anything else, all accesses are controlled through status acquire/release semantics * this contains fixes about bad ordering of said accesses in Linda:send and Linda:receive | ||||
| * | Cleaning up guano | Benoit Germain | 2024-11-13 | 1 | -3/+4 |
| | | | | | Lane::selfdestruct_next and Universe::selfdestructFirst do not need to be volatile or anything else, all accesses are mutex-protected | ||||
| * | Cleaning up guano | Benoit Germain | 2024-11-13 | 1 | -1/+1 |
| | | | | | Converted volatile Lane::cancelRequest to std::atomic | ||||
| * | Cleaning up guano | Benoit Germain | 2024-11-13 | 1 | -20/+26 |
| | | | | | Converted volatile Lane::status to std::atomic | ||||
| * | Renamed intercopycontext.h → intercopycontext.hpp, state.h → state.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | |||||
| * | Renamed debugspew.h → debugspew.hpp, lindafactory.h → lindafactory.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | |||||
| * | Renamed lane.h → lane.hpp, linda.h → linda.hpp, threading.h → ↵ | Benoit Germain | 2024-10-28 | 1 | -2/+2 |
| | | | | | threading.hpp | ||||
| * | Renamed allocator.h → allocator.hpp, cancel.h → cancel.hpp, keeper.h → ↵ | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | | | | keeper.hpp, tools.h → tools.hpp | ||||
| * | Renamed _pch.h → _pch.hpp, deep.h → deep.hpp, lanes.h → lanes.hpp | Benoit Germain | 2024-10-28 | 1 | -1/+1 |
| | | |||||
| * | Some internal function name changes + slight lane:__index optimization | Benoit Germain | 2024-10-28 | 1 | -23/+25 |
| | | |||||
| * | Fix a minor assert message + code boyscouting | Benoit Germain | 2024-10-25 | 1 | -2/+2 |
| | | |||||
| * | Modernized some more trifles | Benoit Germain | 2024-10-24 | 1 | -6/+6 |
| | | |||||
| * | Factorized Lane::cancelSoft/cancelHard → internalCancel | Benoit Germain | 2024-10-24 | 1 | -24/+9 |
| | | |||||
| * | Strengthen more code with UserValueIndex | Benoit Germain | 2024-10-24 | 1 | -9/+9 |
| | | |||||
| * | More strong typing for UniqueKey::getSubTable() arguments | Benoit Germain | 2024-10-24 | 1 | -1/+1 |
| | | |||||
| * | Sprinkling StackIndex all over the place | Benoit Germain | 2024-10-08 | 1 | -69/+71 |
| | | |||||
| * | Code boyscouting | Benoit Germain | 2024-07-30 | 1 | -22/+22 |
| | | |||||
| * | Internal refactorization to properly handle lua_resume idiosyncrasies | Benoit Germain | 2024-07-29 | 1 | -166/+259 |
| | | |||||
| * | get_debug_threadname → get_threadname | Benoit Germain | 2024-07-04 | 1 | -4/+4 |
| | | |||||
| * | Fix finalizers in coroutine lanes | Benoit Germain | 2024-07-04 | 1 | -2/+4 |
| | | |||||
| * | Error handling in coroutine lanes | Benoit Germain | 2024-07-04 | 1 | -22/+20 |
| | | |||||
| * | It is possible to index and join a suspended coroutine lane | Benoit Germain | 2024-07-03 | 1 | -13/+52 |
| | | |||||
| * | Renamed set_debug_threadname → lane_threadname (can also read the current ↵ | Benoit Germain | 2024-07-03 | 1 | -17/+31 |
| | | | | | name now) | ||||
| * | Add minimal coroutine support: no doc, no error handling, no cancellation ↵ | Benoit Germain | 2024-07-03 | 1 | -24/+118 |
| | | | | | handling (yet) | ||||
| * | linda:limit() and linda:set() return a second value, a string representing ↵ | Benoit Germain | 2024-06-27 | 1 | -1/+1 |
| | | | | | the fill status | ||||
| * | Wording fix: parameter → argument | Benoit Germain | 2024-06-14 | 1 | -1/+1 |
| | | |||||
| * | Boyscouting | Benoit Germain | 2024-06-14 | 1 | -4/+4 |
| | | |||||
| * | Fix error handling when indexing a lane with unexpected data | Benoit Germain | 2024-06-14 | 1 | -5/+15 |
| | | |||||
| * | lua_pushliteral -> luaG_pushstring | Benoit Germain | 2024-06-14 | 1 | -12/+12 |
| | | |||||
| * | More fixes to make clang happy | Benoit Germain | 2024-06-14 | 1 | -4/+10 |
| | | |||||
| * | A small step toward making clang happy | Benoit Germain | 2024-06-13 | 1 | -17/+18 |
| | | |||||
| * | Code boyscouting | Benoit Germain | 2024-06-12 | 1 | -5/+5 |
| | | |||||
