diff options
author | Ron <ron@debian.org> | 2009-06-27 04:44:21 +0930 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-07-09 01:35:24 -0700 |
commit | 4dc09127f6782c77f3d92268d78a46f8a1a8492d (patch) | |
tree | c9694e1a95ec398e0834053dd82d37ee6766137f /libpthread/linuxthreads.old/cancel.c | |
parent | f241d2e5e336d440db106e972138664baeadfd70 (diff) | |
download | uClibc-alpine-4dc09127f6782c77f3d92268d78a46f8a1a8492d.tar.bz2 uClibc-alpine-4dc09127f6782c77f3d92268d78a46f8a1a8492d.tar.xz |
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 <ron@debian.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/linuxthreads.old/cancel.c')
-rw-r--r-- | libpthread/linuxthreads.old/cancel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/linuxthreads.old/cancel.c b/libpthread/linuxthreads.old/cancel.c index 03a85e4e9..47534be66 100644 --- a/libpthread/linuxthreads.old/cancel.c +++ b/libpthread/linuxthreads.old/cancel.c @@ -31,7 +31,7 @@ extern void __rpc_thread_destroy(void); #ifdef _STACK_GROWS_DOWN # define FRAME_LEFT(frame, other) ((char *) frame >= (char *) other) -#elif _STACK_GROWS_UP +#elif defined _STACK_GROWS_UP # define FRAME_LEFT(frame, other) ((char *) frame <= (char *) other) #else # error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" @@ -193,10 +193,10 @@ void __pthread_perform_cleanup(char *currentframe) for (c = THREAD_GETMEM(self, p_cleanup); c != NULL; c = c->__prev) { -#if _STACK_GROWS_DOWN +#ifdef _STACK_GROWS_DOWN if ((char *) c <= currentframe) break; -#elif _STACK_GROWS_UP +#elif defined _STACK_GROWS_UP if ((char *) c >= currentframe) break; #else |