From ff173a21c1014d233e9977caa2d7234b035fd185 Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 29 Sep 2009 07:45:51 +0000 Subject: [PATCH] windows port --- src/Container/Component_i.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Container/Component_i.cxx b/src/Container/Component_i.cxx index 0c173fae3..f666a5bf2 100644 --- a/src/Container/Component_i.cxx +++ b/src/Container/Component_i.cxx @@ -724,7 +724,11 @@ bool Engines_Component_i::Killer( pthread_t ThreadId , int signum ) } else { +#ifdef WNT + MESSAGE("Killer : ThreadId " << ThreadId.p << " pthread_canceled") ; +#else MESSAGE("Killer : ThreadId " << ThreadId << " pthread_canceled") ; +#endif } } else @@ -736,7 +740,11 @@ bool Engines_Component_i::Killer( pthread_t ThreadId , int signum ) } else { +#ifdef WNT + MESSAGE("Killer : ThreadId " << ThreadId.p << " pthread_killed(" << signum << ")") ; +#else MESSAGE("Killer : ThreadId " << ThreadId << " pthread_killed(" << signum << ")") ; +#endif } } } -- 2.39.2