From 7a8a5aaec374eb9040283d9d4d0ef2bd321e072d Mon Sep 17 00:00:00 2001 From: Jim Rees Date: Fri, 10 Oct 2003 14:12:05 +0000 Subject: [PATCH] fix-lwp-20031010 abort needs _C_LABEL too add dependency on process.i386.s to process.o --- src/lwp/Makefile.in | 2 +- src/lwp/process.i386.s | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lwp/Makefile.in b/src/lwp/Makefile.in index cbefad0182..f68b441a1f 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 e5635f3f04..951ca0d560 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)