aboutsummaryrefslogtreecommitdiff
path: root/src/lanes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lanes.c')
-rw-r--r--src/lanes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lanes.c b/src/lanes.c
index 2cb1af8..ef08e3a 100644
--- a/src/lanes.c
+++ b/src/lanes.c
@@ -413,11 +413,11 @@ struct s_Linda
413 SIGNAL_T read_happened; 413 SIGNAL_T read_happened;
414 SIGNAL_T write_happened; 414 SIGNAL_T write_happened;
415 struct s_Universe* U; // the universe this linda belongs to 415 struct s_Universe* U; // the universe this linda belongs to
416 ptrdiff_t group; // a group to control keeper allocation between lindas
416 enum e_cancel_request simulate_cancel; 417 enum e_cancel_request simulate_cancel;
417 unsigned long group; // a group to control keeper allocation between lindas
418 char name[1]; 418 char name[1];
419}; 419};
420#define LINDA_KEEPER_HASHSEED( linda) (linda->group ? linda->group : (unsigned long)linda) 420#define LINDA_KEEPER_HASHSEED( linda) (linda->group ? linda->group : (ptrdiff_t)linda)
421 421
422static void* linda_id( lua_State*, enum eDeepOp); 422static void* linda_id( lua_State*, enum eDeepOp);
423 423