From 715cbd0765fe1463f246fbcb2d60dc503dfc18df Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Wed, 27 Feb 2008 22:31:11 +0000 Subject: [PATCH] DEVEL15-arm-lwp-adm-20080227 LICENSE IPL10 use ucontext-less lwp on arm linux (cherry picked from commit 023d3f3bae273d7af16d52fd0c468fc05653abe5) --- src/config/param.arm_linux26.h | 5 ----- src/lwp/Makefile.in | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/config/param.arm_linux26.h b/src/config/param.arm_linux26.h index d4648319e6..2e142c7702 100644 --- a/src/config/param.arm_linux26.h +++ b/src/config/param.arm_linux26.h @@ -83,11 +83,6 @@ #define SYS_NAME "arm_linux26" #define SYS_NAME_ID SYS_NAME_ID_arm_linux26 -#ifdef __GLIBC__ -#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 3) -#define USE_UCONTEXT -#endif -#endif #endif /* AFS_PARAM_H */ diff --git a/src/lwp/Makefile.in b/src/lwp/Makefile.in index d7306b2840..87db1392f9 100644 --- a/src/lwp/Makefile.in +++ b/src/lwp/Makefile.in @@ -36,7 +36,7 @@ process.o : process.s process.i386.s process.c @set -x; case "$(SYS_NAME)" in \ pmax_he1) \ $(CCOBJ) ${LWP_DBG} ${LWP_OPTMZ} -c -I${TOP_INCDIR} process.s;; \ - sun4c_51 | sun4c_52 | sun4m_51 | sun4m_52 | sun4c_53 | sun4m_53 | sun4_53 | sun4_52 | sun4_54 | sun4c_54 | sun4m_54 | sun4x_5* ) \ + sun4c_51 | sun4c_52 | sun4m_51 | sun4m_52 | sun4c_53 | sun4m_53 | sun4_53 | sun4_52 | sun4_54 | sun4c_54 | sun4m_54 | sun4x_5* | arm_linux* ) \ $(CPP) -P -I${TOP_INCDIR} ${srcdir}/process.s process.ss; \ ${AS} process.ss -o process.o; \ $(RM) process.ss ;; \