diff --git a/Modules/Core/Common/include/itkThreadSupport.h b/Modules/Core/Common/include/itkThreadSupport.h index 9bd44c9ea5e..860898c6980 100644 --- a/Modules/Core/Common/include/itkThreadSupport.h +++ b/Modules/Core/Common/include/itkThreadSupport.h @@ -22,16 +22,6 @@ #include "itkConfigure.h" // For ITK_USE_WIN32_THREADS, ITK_USE_PTHREADS, etc. -// This implementation uses a routine called SignalObjectAndWait() -// which is only defined on WinNT 4.0 or greater systems. We need to -// define this symbol in order to get the prototype for the -// routine. This needs to be done before we load any system headers. -#ifdef ITK_USE_WIN32_THREADS -# ifndef _WIN32_WINNT -# define _WIN32_WINNT 0x0501 // TBB 4.4 requires WinXP (0x0501 or greater) -# endif -#endif - #if defined(ITK_USE_PTHREADS) # include #elif defined(ITK_USE_WIN32_THREADS)