]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/unix/sysv/linux/sparc/bits/setjmp.h
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / sparc / bits / setjmp.h
index 7dc822929fca2f7c11f6c7f9b2a9a7e12224ca0a..b3394b16fbc9921baa9122795ae4b1458409e2bb 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (C) 1997, 1999, 2000, 2003, 2005, 2006
-   Free Software Foundation, Inc.
+/* Copyright (C) 1997-2021 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -13,9 +12,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
 
 #ifndef _BITS_SETJMP_H
 #define _BITS_SETJMP_H  1
 #ifndef _ASM
 typedef struct __sparc64_jmp_buf
   {
-    struct __sparc64_jmp_buf   *uc_link;
-    unsigned long              uc_flags;
-    unsigned long              uc_sigmask;
+    struct __sparc64_jmp_buf   *__uc_link;
+    unsigned long              __uc_flags;
+    unsigned long              __uc_sigmask;
     struct __sparc64_jmp_buf_mcontext
       {
-       unsigned long           mc_gregs[19];
-       unsigned long           mc_fp;
-       unsigned long           mc_i7;
+       unsigned long           __mc_gregs[19];
+       unsigned long           __mc_fp;
+       unsigned long           __mc_i7;
        struct __sparc64_jmp_buf_fpu
          {
            union
              {
-               unsigned int    sregs[32];
-               unsigned long   dregs[32];
-               long double     qregs[16];
-             }                 mcfpu_fpregs;
-           unsigned long       mcfpu_fprs;
-           unsigned long       mcfpu_gsr;
-           void                *mcfpu_fq;
-           unsigned char       mcfpu_qcnt;
-           unsigned char       mcfpu_qentsz;
-           unsigned char       mcfpu_enab;
-         }                     mc_fpregs;
-      }                                uc_mcontext;
+               unsigned int    __sregs[32];
+               unsigned long   __dregs[32];
+               long double     __qregs[16];
+             }                 __mcfpu_fpregs;
+           unsigned long       __mcfpu_fprs;
+           unsigned long       __mcfpu_gsr;
+           void                *__mcfpu_fq;
+           unsigned char       __mcfpu_qcnt;
+           unsigned char       __mcfpu_qentsz;
+           unsigned char       __mcfpu_enab;
+         }                     __mc_fpregs;
+      }                                __uc_mcontext;
   } __jmp_buf[1];
 #endif
 
-/* Test if longjmp to JMPBUF would unwind the frame
-   containing a local variable at ADDRESS.  */
-#define _JMPBUF_UNWINDS(jmpbuf, address, demangle)                     \
-  ((unsigned long int) (address) < (jmpbuf)->uc_mcontext.mc_fp)
-
 #else
 
-#if defined __USE_MISC || defined _ASM
-# define JB_SP  0
-# define JB_FP  1
-# define JB_PC  2
-#endif
-
 #ifndef _ASM
 typedef int __jmp_buf[3];
 #endif
 
-/* Test if longjmp to JMPBUF would unwind the frame
-   containing a local variable at ADDRESS.  */
-#define _JMPBUF_UNWINDS(jmpbuf, address, demangle)     \
-  ((int) (address) < demangle ((jmpbuf)[JB_SP]))
-
 #endif
 
 #endif  /* bits/setjmp.h */