]> granicus.if.org Git - gc/commitdiff
Remove redundant check for GC_RTEMS_PTHREADS in gc_config_macros.h
authorIvan Maidanski <ivmai@mail.ru>
Thu, 12 Apr 2012 19:49:30 +0000 (23:49 +0400)
committerIvan Maidanski <ivmai@mail.ru>
Thu, 12 Apr 2012 19:49:30 +0000 (23:49 +0400)
* include/gc_config_macros.h (GC_PTHREADS): Do not test
GC_RTEMS_PTHREADS macro in case of GC_WIN32_THREADS defined.

include/gc_config_macros.h

index 728216a429e6ee34d7c21b43f3b11b864740fd8a..9d5890077c3b246a84147e3d795c3d791eed2275 100644 (file)
 
 #undef GC_PTHREADS
 #if (!defined(GC_WIN32_THREADS) || defined(GC_WIN32_PTHREADS) \
-     || defined(GC_RTEMS_PTHREADS) || defined(__CYGWIN32__) \
-     || defined(__CYGWIN__)) && defined(GC_THREADS)
+     || defined(__CYGWIN32__) || defined(__CYGWIN__)) && defined(GC_THREADS)
   /* Posix threads. */
 # define GC_PTHREADS
 #endif