diff options
author | John Birrell <jb@FreeBSD.org> | 1998-04-29 09:14:35 +0000 |
---|---|---|
committer | John Birrell <jb@FreeBSD.org> | 1998-04-29 09:14:35 +0000 |
commit | 5178bcd1cf3b747d5c9f3322716f018e98316260 (patch) | |
tree | ab4c8755188c07362c550c661c86a309c0681b86 /lib/libc/amd64/gen/_setjmp.S | |
parent | 72b42edfd4796072d2a48e7c0c8294ae3e86d70a (diff) |
Notes
Diffstat (limited to 'lib/libc/amd64/gen/_setjmp.S')
-rw-r--r-- | lib/libc/amd64/gen/_setjmp.S | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/lib/libc/amd64/gen/_setjmp.S b/lib/libc/amd64/gen/_setjmp.S index 62259cee9320d..4f1d2c7c15a26 100644 --- a/lib/libc/amd64/gen/_setjmp.S +++ b/lib/libc/amd64/gen/_setjmp.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: _setjmp.S,v 1.6 1997/02/22 14:58:34 peter Exp $ */ #if defined(LIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$Id: _setjmp.S,v 1.6 1997/02/22 14:58:34 peter Exp $" #endif /* LIBC_RCS and not lint */ /* @@ -53,11 +53,7 @@ #include "DEFS.h" -#ifdef _THREAD_SAFE -ENTRY(__thread_sys_setjmp) -#else ENTRY(_setjmp) -#endif movl 4(%esp),%eax movl 0(%esp),%edx movl %edx, 0(%eax) /* rta */ @@ -70,11 +66,7 @@ ENTRY(_setjmp) xorl %eax,%eax ret -#ifdef _THREAD_SAFE -ENTRY(__thread_sys_longjmp) -#else ENTRY(_longjmp) -#endif movl 4(%esp),%edx movl 8(%esp),%eax movl 0(%edx),%ecx |