GUI Signals

This commit is contained in:
Michael Schimmel
2025-06-24 14:37:38 +02:00
parent 3048c28fe3
commit 35413f5966
5 changed files with 105 additions and 116 deletions
+2 -1
View File
@@ -26,7 +26,8 @@ type
strict private
// Head of the linked list. The pointer value itself is repurposed for a spinlock.
// Bit 0 of the address stores the lock state (0 = locked, 1 = unlocked).
[volatile] FList: PItem;
[volatile]
FList: PItem;
// Allocates memory for a new TItem.
class function AllocItem: PItem; static; inline;