From: Yoann Vandoorselaere Date: Fri, 12 Sep 2008 00:34:54 +0000 (+0200) Subject: Use dummy implementation also if USE_WIN32_THREADS. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69aaf4883efde924b8d184ee22650ba7c0dec025;p=pspp Use dummy implementation also if USE_WIN32_THREADS. --- diff --git a/ChangeLog b/ChangeLog index 941fe8a483..c895a9b5c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-11 Yoann Vandoorselaere + + * lib/glthread/cond.h: Use dummy implementation also if + USE_WIN32_THREADS. + 2008-09-11 Yoann Vandoorselaere * modules/fnmatch-posix (License): Change to LGPLv2+. diff --git a/lib/glthread/cond.h b/lib/glthread/cond.h index f71e62716a..f832637c1f 100644 --- a/lib/glthread/cond.h +++ b/lib/glthread/cond.h @@ -269,7 +269,7 @@ typedef pthread_cond_t gl_cond_t; /* ========================================================================= */ -#if !(USE_POSIX_THREADS || USE_PTH_THREADS || USE_SOLARIS_THREADS || USE_WIN32_THREADS) +#if !(USE_POSIX_THREADS || USE_PTH_THREADS || USE_SOLARIS_THREADS) /* Provide dummy implementation if threads are not supported. */