From 11a52734e42237bac70a1f4a3ae2ef7e9f751bc4 Mon Sep 17 00:00:00 2001 From: Ron Date: Sat, 27 Jun 2009 04:44:21 +0930 Subject: Check #if feature test macros are defined where they may not be Once again all of these reduce the noise from gcc-4.4. Replaces a few more (USE_TLS && HAVE___THREAD) with USE___THREAD while we need to mess with them for this anyhow. Signed-off-by: Ron Lee Signed-off-by: Mike Frysinger --- libpthread/linuxthreads.old/ptlongjmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libpthread/linuxthreads.old/ptlongjmp.c') diff --git a/libpthread/linuxthreads.old/ptlongjmp.c b/libpthread/linuxthreads.old/ptlongjmp.c index b3ff2746f..5213a4de0 100644 --- a/libpthread/linuxthreads.old/ptlongjmp.c +++ b/libpthread/linuxthreads.old/ptlongjmp.c @@ -35,13 +35,13 @@ static void pthread_cleanup_upto(__jmp_buf target) c != NULL && _JMPBUF_UNWINDS(target, c); c = c->__prev) { -#if _STACK_GROWS_DOWN +#ifdef _STACK_GROWS_DOWN if ((char *) c <= currentframe) { c = NULL; break; } -#elif _STACK_GROWS_UP +#elif defined _STACK_GROWS_UP if ((char *) c >= currentframe) { c = NULL; -- cgit v1.2.3