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.11.0~53 X-Git-Url: http://git.lttng.org/?p=urcu.git;a=commitdiff_plain;h=02eb66d80fa5ca5c7d48779ef8f65a5971bf005c 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 96f1f59..cb0d903 100644 --- a/tests/common/thread-id.h +++ b/tests/common/thread-id.h @@ -57,6 +57,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