From 5875fe44ba7a240dd101f954c7dc83337a0c2cef Mon Sep 17 00:00:00 2001 From: Benoit Germain <bnt.germain@gmail.com> Date: Wed, 16 Jun 2021 18:41:14 +0200 Subject: changed lanes.threads() output so that several lanes with the same name 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. --- src/lanes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lanes.h') diff --git a/src/lanes.h b/src/lanes.h index da0dd26..1a38ba5 100644 --- a/src/lanes.h +++ b/src/lanes.h @@ -11,7 +11,7 @@ #endif // (defined PLATFORM_WIN32) || (defined PLATFORM_POCKETPC) #define LANES_VERSION_MAJOR 3 -#define LANES_VERSION_MINOR 14 +#define LANES_VERSION_MINOR 15 #define LANES_VERSION_PATCH 0 #define LANES_MIN_VERSION_REQUIRED(MAJOR, MINOR, PATCH) ((LANES_VERSION_MAJOR>MAJOR) || (LANES_VERSION_MAJOR==MAJOR && (LANES_VERSION_MINOR>MINOR || (LANES_VERSION_MINOR==MINOR && LANES_VERSION_PATCH>=PATCH)))) -- cgit v1.2.3-55-g6feb