From 831f2989aca683aedda032061a74727707f0b871 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Thu, 12 Mar 2015 22:34:54 +1000 Subject: [PATCH] Revert commit 635578b3 relating to pthread debugging This breaks the build for windows builds that don't use the pthreads_win32 library. Using the opaque pthread_t type like this is probably not a great idea. Using PBD::pthread_name is another option that I've used elsewhere that seems more useful. --- libs/pbd/pbd/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pbd/pbd/debug.h b/libs/pbd/pbd/debug.h index fdfffda71c..f1776a254c 100644 --- a/libs/pbd/pbd/debug.h +++ b/libs/pbd/pbd/debug.h @@ -57,7 +57,7 @@ namespace PBD { #define DEBUG_STR(id) __debug_str ## id #define DEBUG_STR_APPEND(id,s) __debug_str ## id << s; #define DEBUG_ENABLED(bits) ((bits) & PBD::debug_bits) -#ifdef PLATFORM_WINDOWS +#ifdef PTW32_VERSION #define DEBUG_THREAD_SELF pthread_self().p #else #define DEBUG_THREAD_SELF pthread_self()