From: Jim Rees Date: Fri, 10 Oct 2003 14:12:05 +0000 (+0000) Subject: fix-lwp-20031010 X-Git-Tag: openafs-devel-1_3_50~42 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=7a8a5aaec374eb9040283d9d4d0ef2bd321e072d;p=packages%2Fo%2Fopenafs.git fix-lwp-20031010 abort needs _C_LABEL too add dependency on process.i386.s to process.o --- diff --git a/src/lwp/Makefile.in b/src/lwp/Makefile.in index cbefad018..f68b441a1 100644 --- a/src/lwp/Makefile.in +++ b/src/lwp/Makefile.in @@ -29,7 +29,7 @@ process.s: echo Nothing to be done for process.s # This is required so sgi_64+ does not try to build this file. -process.o : process.s process.c +process.o : process.s process.i386.s process.c @case "$(SYS_NAME)" in \ pmax_he1) \ $(CC) ${LWP_DBG} ${LWP_OPTMZ} -c -I${TOP_INCDIR} process.s;; \ diff --git a/src/lwp/process.i386.s b/src/lwp/process.i386.s index e5635f3f0..951ca0d56 100644 --- a/src/lwp/process.i386.s +++ b/src/lwp/process.i386.s @@ -59,9 +59,9 @@ ENTRY(savecontext) L1: jmp *f(%ebp) /* ebx = &f */ -/* Shouldnt be here....*/ +/* Shouldn't be here....*/ - call abort + call _C_LABEL(abort) /* * returnto(area2) @@ -85,4 +85,4 @@ ENTRY(returnto) /* I see, said the blind man, as he picked up his hammer and saw! */ pushl $1234 - call abort + call _C_LABEL(abort)