aboutsummaryrefslogtreecommitdiff
path: root/src/lanes_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lanes_private.h')
-rw-r--r--src/lanes_private.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lanes_private.h b/src/lanes_private.h
index 7da3286..6717fe0 100644
--- a/src/lanes_private.h
+++ b/src/lanes_private.h
@@ -3,6 +3,7 @@
3 3
4#include "uniquekey.h" 4#include "uniquekey.h"
5#include "cancel.h" 5#include "cancel.h"
6#include "universe.h"
6 7
7// NOTE: values to be changed by either thread, during execution, without 8// NOTE: values to be changed by either thread, during execution, without
8// locking, are marked "volatile" 9// locking, are marked "volatile"
@@ -63,9 +64,9 @@ struct s_Lane
63 // is still running 64 // is still running
64 // S: cleans up after itself if non-NULL at lane exit 65 // S: cleans up after itself if non-NULL at lane exit
65 66
66#if HAVE_LANE_TRACKING 67#if HAVE_LANE_TRACKING()
67 struct s_Lane* volatile tracking_next; 68 struct s_Lane* volatile tracking_next;
68#endif // HAVE_LANE_TRACKING 69#endif // HAVE_LANE_TRACKING()
69 // 70 //
70 // For tracking only 71 // For tracking only
71}; 72};