From a90fc0aa575c71e1e5fb4dc8adc1f2d9001e536d Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 20 Jul 2017 17:33:47 -0400 Subject: [PATCH] Tests fix: add missing Cygwin thread id Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- tests/common/thread-id.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/common/thread-id.h b/tests/common/thread-id.h index 56835e3..df94360 100644 --- a/tests/common/thread-id.h +++ b/tests/common/thread-id.h @@ -58,6 +58,18 @@ unsigned long urcu_get_thread_id(void) { return (unsigned long) pthread_self(); } +#elif defined(__CYGWIN__) +#include + +extern unsigned long pthread_getsequence_np(pthread_t *); + +static inline +unsigned long urcu_get_thread_id(void) +{ + pthread_t thr = pthread_self(); + return pthread_getsequence_np(&thr); +} + #else # warning "use pid as thread ID" static inline -- 2.34.1