index
:
lanes
C-Implementation
gh-pages
master
A mirror of https://github.com/LuaLanes/lanes.git
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
Improve table and userdata conversions
Benoit Germain
2025-09-20
6
-128
/
+263
*
RAII + setjmp = UB
Benoit Germain
2025-07-31
2
-40
/
+13
*
I don't even know why I ever included luajit.h. removed it.
Benoit Germain
2025-07-28
1
-1
/
+0
*
Fix crashes in MSVC release builds related to KeeperOperationInProgress
Benoit Germain
2025-07-25
3
-14
/
+24
*
Rework function bytecode dumping to be Lua5.5-ready
Benoit Germain
2025-07-24
3
-35
/
+28
*
Use LANES_DEBUG instead of MSVC-specific _DEBUG to activate debug code
Benoit Germain
2025-07-24
1
-4
/
+4
*
workaround a possible Lua 5.5 bug when dumping functions (but it doesn't solv...
Benoit Germain
2025-07-22
1
-0
/
+5
*
New helper to push function bytecode (to facilitate Lua 5.5 support)
Benoit Germain
2025-07-22
3
-38
/
+53
*
Added Lua 5.5 support
Benoit Germain
2025-07-04
4
-25
/
+88
*
Changed lua wrapper prefixes from luaG_ to luaW_ (w as in wrapper!)
Benoit Germain
2025-07-04
20
-357
/
+357
*
Fix more issues related to suspended coroutines and join/indexing operations
Benoit Germain
2025-07-03
2
-118
/
+163
*
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
*
Minor code refacto (Lane::waitForCompletion)
Benoit Germain
2025-06-25
2
-27
/
+15
*
Better protection of selfdestruct chain at universe shutdown
Benoit Germain
2025-06-24
1
-15
/
+18
*
Change lane:join() return values
Benoit Germain
2025-06-05
1
-14
/
+20
*
Minor code cosmetic changes
Benoit Germain
2025-05-22
3
-64
/
+89
*
Code factorization in KeyUD::pop()
Benoit Germain
2025-05-21
1
-9
/
+19
*
Thread priority rework
Benoit Germain
2025-05-07
7
-100
/
+175
*
Fix priorities for Mingw builds
Benoit Germain
2025-05-06
1
-2
/
+2
*
Move ProtectedAllocator::Protected_lua_Alloc in universe.cpp
Benoit Germain
2025-04-29
2
-8
/
+13
*
Updated comments on unit test lanes.configure.allocator/protected
Benoit Germain
2025-04-29
1
-1
/
+1
*
Remove a useless mutex guard on lane setf-destruct
Benoit Germain
2025-04-28
2
-2
/
+2
*
Minor internal tweaks in shutdown code
Benoit Germain
2025-04-28
4
-12
/
+23
*
Code factorization in linda send/receive implementation
Benoit Germain
2025-04-25
1
-64
/
+40
*
cancel_test() returns "soft"/"hard" instead of true
Benoit Germain
2025-04-23
1
-1
/
+5
*
Make gcc happy
Benoit Germain
2025-04-20
2
-3
/
+3
*
A unit test for linda wake_period
Benoit Germain
2025-04-18
2
-1
/
+10
*
New feature: Linda periodical cancellation checks
Benoit Germain
2025-04-18
6
-77
/
+118
*
Linda batched mode rework
Benoit Germain
2025-04-15
5
-154
/
+155
*
A bit of code factorization
Benoit Germain
2025-04-15
1
-88
/
+86
*
Implement THREAD_SETNAME for mingw
Benoit Germain
2025-04-07
1
-1
/
+3
*
Fix crash with multi keepers (invalid memory access on close)
Benoit Germain
2025-04-07
2
-34
/
+15
*
Fix 32 bits compilation warnings
Benoit Germain
2025-04-04
1
-2
/
+2
*
Fix threading compilation for MinGW
Benoit Germain
2025-04-01
3
-31
/
+51
*
Circumvent MSVC possible bug causing a crash in optimized builds
Benoit Germain
2025-03-17
1
-1
/
+3
*
Fix test "allocator = <bad C function>" not failing against LuaJIT like it sh...
Benoit Germain
2025-03-17
3
-7
/
+7
*
Raise a regular Lua error instead of throwing a C++ std::logic_error exceptio...
Benoit Germain
2025-03-17
4
-11
/
+48
*
Fix crash with LuaJIT when using { name = 'auto' } for lane name detection
Benoit Germain
2025-03-17
1
-1
/
+3
*
Fix crash when using { name = 'auto' } with a lane generated from a string
Benoit Germain
2025-03-14
1
-4
/
+11
*
lanes/core.[so|dll] → lanes_core.[so|dll]
Benoit Germain
2025-03-14
6
-24
/
+20
*
More makefile tweaks
Benoit Germain
2025-03-14
1
-3
/
+5
*
More work on Makefiles
Benoit Germain
2025-03-13
1
-15
/
+14
*
Disable unit test "lanes.stack checker" in Release builds
Benoit Germain
2025-03-13
1
-0
/
+1
*
More makefile improvements
Benoit Germain
2025-03-12
1
-4
/
+4
*
Makefile tweaks
Benoit Germain
2025-03-12
1
-1
/
+1
*
Add a VisualStudio solution to build and debug Lanes
Benoit Germain
2025-03-11
1
-4
/
+0
*
Fix unit tests failing for Lua 5.3
Benoit Germain
2025-03-10
2
-7
/
+6
*
Buildfix against Lua 5.1 (no lua_Unsigned)
Benoit Germain
2025-03-07
1
-3
/
+3
*
Revamped lanes.nameof
Benoit Germain
2025-03-07
3
-115
/
+206
[next]