libthread: context switching for arm, still not complete

This commit is contained in:
Russ Cox 2009-11-18 04:12:17 -05:00
parent 778ec84c9c
commit ba940ae61c
4 changed files with 78 additions and 4 deletions

View file

@ -4,6 +4,9 @@ test -f $PLAN9/config && . $PLAN9/config
tag="$OBJTYPE-$SYSNAME-${SYSVERSION:-`uname -r`}-${CC9:-cc}"
case "$tag" in
arm-Linux-*)
echo ${SYSNAME}-${OBJTYPE}-asm.o $SYSNAME.o
;;
*-Linux-2.6.*)
echo pthread.o
;;
@ -36,5 +39,9 @@ sparc64-Linux)
# so we supply our own copy from the latest glibc.
echo Linux-sparc64-context.o Linux-sparc64-swapcontext.o
;;
arm-Linux)
# ARM doesn't supply them either.
echo Linux-arm-context.o Linux-arm-swapcontext.o
;;
esac