diff options
author | Jason Evans <jasone@FreeBSD.org> | 2000-01-19 07:01:40 +0000 |
---|---|---|
committer | Jason Evans <jasone@FreeBSD.org> | 2000-01-19 07:01:40 +0000 |
commit | 1c12990b99e0a50adad4fb4691b64378de2f1b12 (patch) | |
tree | 93d5a26bed07e4ee9050e0be23ce4771ef83efed /lib/libc/amd64/gen/_setjmp.S | |
parent | d33523160658b54127ac63bcaefa6080d8dbe373 (diff) |
Notes
Diffstat (limited to 'lib/libc/amd64/gen/_setjmp.S')
-rw-r--r-- | lib/libc/amd64/gen/_setjmp.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/amd64/gen/_setjmp.S b/lib/libc/amd64/gen/_setjmp.S index 21ab880f83e7a..64606c52ac968 100644 --- a/lib/libc/amd64/gen/_setjmp.S +++ b/lib/libc/amd64/gen/_setjmp.S @@ -54,7 +54,6 @@ #include "DEFS.h" ALTENTRY(_setjmp) -ALTENTRY(_libc__setjmp) ENTRY(___setjmp) movl 4(%esp),%eax movl 0(%esp),%edx @@ -68,8 +67,9 @@ ENTRY(___setjmp) xorl %eax,%eax ret +#ifndef _THREAD_SAFE ALTENTRY(_longjmp) -ALTENTRY(_libc__longjmp) +#endif ENTRY(___longjmp) movl 4(%esp),%edx movl 8(%esp),%eax |