aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix crash when using { name = 'auto' } with a lane generated from a stringBenoit Germain29 hours1-4/+11
|
* lanes/core.[so|dll] → lanes_core.[so|dll]Benoit Germain33 hours6-24/+20
|
* More makefile tweaksBenoit Germain35 hours1-3/+5
|
* More work on MakefilesBenoit Germain2 days1-15/+14
| | | | | | | | | | | * renamed makefiles: - Shared.mk → Shared.makefile - src/Makefile → src/Lanes.makefile - unit_tests/Makefile → unit_tests/UnitTests.makefile - deep_userdata_example/Makefile → deep_userdata_example/DUE.makefile * Add a makefile for deep_userdata_example * added a target 'unit_tests' to build them (not running them yet) * plus some minor internal improvements
* Disable unit test "lanes.stack checker" in Release buildsBenoit Germain2 days1-0/+1
|
* More makefile improvementsBenoit Germain3 days1-4/+4
|
* Makefile tweaksBenoit Germain3 days1-1/+1
|
* Add a VisualStudio solution to build and debug LanesBenoit Germain4 days1-4/+0
| | | | | | * configured to build Lanes, the example module deep_userdata_example, and the unit tests * relies on Lua 5.1 → 5.4, LuaJIT and MoonJIT to be built and located in a fixed directory * manual_register legacy test now uses deep_userdata_example module instead of lfs
* Fix unit tests failing for Lua 5.3Benoit Germain5 days2-7/+6
| | | | | * Fix compatibility function lua_getiuservalue() for Lua 5.3 * Fix handling of nil function upvalues in lanes.nameof()
* Buildfix against Lua 5.1 (no lua_Unsigned)Benoit Germain8 days1-3/+3
| | | | Unit tests for lanes.nameof() fail with Lua 5.3 only (to be investigated later)
* Revamped lanes.nameofBenoit Germain8 days3-115/+206
|
* New compatibility helper luaG_rawgetBenoit Germain9 days6-40/+55
|
* Makefile and code fixes to build the unit testsBenoit Germain9 days1-107/+3
|
* Fix gcc being unhappy with [[nodiscard]] enumsBenoit Germain10 days4-3/+3
|
* lanes.nameof internal code refacto + a few unit testsBenoit Germain10 days1-52/+57
|
* All enums are [[nodiscard]]Benoit Germain2025-02-0512-20/+25
|
* Minor internal code tweaksBenoit Germain2025-02-0519-37/+40
| | | | | | | * mark all eligible classes Final * new TableIndex strong type * buildfixes for HAVE_DEBUGSPEW() * overridden virtual destructors tagged as such
* Fix bad formatted error messageBenoit Germain2024-12-201-2/+1
|
* Migrated unit tests to Catch2 v3.7.1Benoit Germain2024-12-201-4/+4
|
* Some constitude tweaksBenoit Germain2024-12-1710-24/+25
|
* Unit tests for thread nameBenoit Germain2024-12-161-6/+6
|
* Fix lane {.name} setting applicationBenoit Germain2024-12-133-36/+42
| | | | The name of the lane was applied to the thread of the lane's creator instead of the lane's thread
* DeepFactory counts the number of active Deep objectsBenoit Germain2024-12-102-0/+8
|
* Renamed an internal constantBenoit Germain2024-12-101-7/+11
|
* Expanded deep_test a bitBenoit Germain2024-12-102-1/+3
|
* lanes.collectgarbage() and linda:collectgarbage()Benoit Germain2024-12-105-0/+86
|
* Improved DeepPrelude architectureBenoit Germain2024-12-098-59/+108
|
* Better validation of lane:cancel() argumentsBenoit Germain2024-12-042-18/+30
|
* Internal rework of an enum bad practice usageBenoit Germain2024-12-036-51/+50
|
* New method linda:restrict()Benoit Germain2024-12-036-37/+239
|
* Data transfer supports registered non-deep full userdataBenoit Germain2024-12-023-26/+103
|
* lanes_register() throws an error if called before Lanes is initializedBenoit Germain2024-11-271-1/+4
|
* Make lanes.register() available as an exported C function lanes_register()Benoit Germain2024-11-272-2/+4
|
* Tweak StackChecker to be able to unit-test itBenoit Germain2024-11-221-7/+13
|
* More [[nodiscard]] boyscoutingBenoit Germain2024-11-2013-57/+114
|
* Some [[nodiscard]] boyscoutingBenoit Germain2024-11-2016-99/+201
|
* AllocatorDefinition implementation improvementsBenoit Germain2024-11-206-24/+100
|
* Simplified lane base library string parsingBenoit Germain2024-11-191-13/+7
|
* Cleaning up guanoBenoit Germain2024-11-134-9/+8
| | | | | * 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 guanoBenoit Germain2024-11-132-3/+3
| | | | Lane::tracking_next and LaneTracker::trackingFirst do not need to be volatile or anything else, all accesses are mutex-protected
* Cleaning up guanoBenoit Germain2024-11-133-5/+8
| | | | Lane::selfdestruct_next and Universe::selfdestructFirst do not need to be volatile or anything else, all accesses are mutex-protected
* Cleaning up guanoBenoit Germain2024-11-135-6/+7
| | | | Converted volatile Lane::cancelRequest to std::atomic
* Cleaning up guanoBenoit Germain2024-11-134-28/+35
| | | | Converted volatile Lane::status to std::atomic
* Cleaning up guanoBenoit Germain2024-11-131-7/+8
| | | | Converted some volatile crap to std::atomic_flag in EnableCrashingOnCrashes
* Fix Makefiles following header renamesBenoit Germain2024-10-281-3/+3
|
* Renamed intercopycontext.h → intercopycontext.hpp, state.h → state.hppBenoit Germain2024-10-288-10/+10
|
* Renamed debugspew.h → debugspew.hpp, lindafactory.h → lindafactory.hppBenoit Germain2024-10-289-7/+7
|
* Renamed lane.h → lane.hpp, linda.h → linda.hpp, threading.h → ↵Benoit Germain2024-10-2814-16/+16
| | | | threading.hpp
* Renamed universe.h → universe.hppBenoit Germain2024-10-288-7/+7
|
* Renamed tracker.h → tracker.hpp, nameof.h → nameof.hppBenoit Germain2024-10-287-5/+5
|