From: Michael Jeanson Date: Thu, 20 Jul 2017 21:33:47 +0000 (-0400) Subject: Tests fix: add missing Cygwin thread id X-Git-Tag: v0.9.5~3 X-Git-Url: http://git.liburcu.org/?p=userspace-rcu.git;a=commitdiff_plain;h=a90fc0aa575c71e1e5fb4dc8adc1f2d9001e536d Tests fix: add missing Cygwin thread id Signed-off-by: Michael Jeanson Signed-off-by: Mathieu Desnoyers --- 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