aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Renamed _pch.h → _pch.hpp, deep.h → deep.hpp, lanes.h → lanes.hppBenoit Germain2024-10-281-20/+0
|
* Code boyscoutingBenoit Germain2024-07-301-2/+2
|
* All Lua headers included just once in _pch.hBenoit Germain2024-06-111-9/+0
|
* Use a precompiled header to speed up the buildBenoit Germain2024-06-071-2/+0
|
* Function parameters L → L_Benoit Germain2024-04-291-3/+3
|
* All headers reformatted with updated clang-format settingsBenoit Germain2024-04-291-6/+7
|
* C++ migration: inter-state transfer managed by a new class InterCopyContextBenoit Germain2024-04-151-0/+4
|
* C++ migration: [[nodiscard]] everywhere. still have to check all std::ignoreBenoit Germain2024-04-091-1/+1
|
* C++ migration: bumped version and updated documentationBenoit Germain2024-03-291-5/+5
|
* C++ migration: buildfixesBenoit Germain2024-03-191-12/+10
| | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C"
* Detect runtime LuaJIT/PUC-Lua mismatchBenoit Germain2024-02-221-1/+1
|
* Finalize version 3.16.2v3.16.2Benoit Germain2023-08-171-1/+1
|
* new .internal_allocator configuration IUNTESTED)Benoit Germain2023-08-091-1/+1
| | | | new configuration option .internal_allocator to help LuaJIT users. THIS IS YET UNTESTED, USE AT YOUR OWN RISKS.
* __lanesclone is now called only once with 3 parameters dest, source, size -> ↵Benoit Germain2022-02-081-2/+2
| | | | BREAKS CUSTOM DEEP USERDATA API
* Version bumpBenoit Germain2022-02-071-1/+1
|
* fix function transfer with lua_dump for Lua 5.4 failing for functions big ↵Benoit Germain2021-07-081-1/+1
| | | | enough to necessitate a buffer reallocation
* changed lanes.threads() output so that several lanes with the same name ↵Benoit Germain2021-06-161-1/+1
| | | | | | don't clobber each other in the result table In the original implementations, the debug name was used as key, which meant that several lanes using the same name would cause only the oldest non-collected one to be listed in the results. Now the result is an array of tuples.
* Lane cancellation reworkBenoit Germain2019-04-261-1/+1
| | | | | opt.cancelstep is gone, hook is installed by lane:cancel() if requested lane:cancel() rework (see doc)
* Lanes version available in public headerBenoit Germain2018-11-261-0/+10
|
* Fix DLL exportsBenoit Germain2018-10-251-0/+1
|
* version 3.5.1v3.5.1Benoit Germain2013-02-131-0/+17
* new lanes.h header and API call luaopen_lanes_embedded() for embedders * "lanes.core" is an acceptable library in the generator libs argument * library "*" wildcard also opens lanes.core * tweaked code for Xbox 360 build