]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Define __libc_unwind_longjmp.
authorUlrich Drepper <drepper@redhat.com>
Thu, 2 Sep 2004 22:46:02 +0000 (22:46 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 2 Sep 2004 22:46:02 +0000 (22:46 +0000)
sysdeps/alpha/nptl/jmpbuf-unwind.h

index ad77816ca09b6a00a302ec777e33f5a9b4844369..5cef8b1cf54d23987f6a80381fa9228cd4075fc5 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
 
@@ -26,3 +26,6 @@
 
 #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \
   ((uintptr_t) (_address) - (_adj) < (uintptr_t) (_jmpbuf)[JB_SP] - (_adj))
+
+/* We use the normal lobngjmp for unwinding.  */
+#define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val)