summaryrefslogtreecommitdiffstats
path: root/lib/libc/i386/gen/sigsetjmp.S
diff options
context:
space:
mode:
authorjasone <jasone@FreeBSD.org>1999-12-24 00:03:00 +0000
committerjasone <jasone@FreeBSD.org>1999-12-24 00:03:00 +0000
commit15ffad75ecb526a3de3193b14541051276bc1d9f (patch)
treea9d8341bd696044d91fc566f5ab7aae3a4fe4ef0 /lib/libc/i386/gen/sigsetjmp.S
parent83381f85df803a921a0514bb105acffcc8e4f7bd (diff)
downloadFreeBSD-src-15ffad75ecb526a3de3193b14541051276bc1d9f.zip
FreeBSD-src-15ffad75ecb526a3de3193b14541051276bc1d9f.tar.gz
Creating weak symbols doesn't work correctly when building an aout libc.
Doing the "right thing" here is difficult, so create two ENTRY points for each function (for example, __setjmp and setjmp are equivalent). This isn't pretty, but it works for both aout and ELF. libc symbol naming needs an overhaul in order to properly support function wrapping, specifically in the case of a real libpthread, and these duplicate entry points should be fixed as part of that overhaul. Pointed out by: bde
Diffstat (limited to 'lib/libc/i386/gen/sigsetjmp.S')
-rw-r--r--lib/libc/i386/gen/sigsetjmp.S6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/i386/gen/sigsetjmp.S b/lib/libc/i386/gen/sigsetjmp.S
index 22cf790..68ad093 100644
--- a/lib/libc/i386/gen/sigsetjmp.S
+++ b/lib/libc/i386/gen/sigsetjmp.S
@@ -60,8 +60,7 @@
*/
ENTRY(__sigsetjmp)
-.weak sigsetjmp;
-.set sigsetjmp, __sigsetjmp;
+ENTRY(sigsetjmp)
movl 8(%esp),%eax
movl 4(%esp),%ecx
movl %eax,44(%ecx)
@@ -92,8 +91,7 @@ ENTRY(__sigsetjmp)
ret
ENTRY(__siglongjmp)
-.weak siglongjmp;
-.set siglongjmp, __siglongjmp;
+ENTRY(siglongjmp)
movl 4(%esp),%edx
cmpl $0,44(%edx)
jz 2f
OpenPOWER on IntegriCloud