From de59a2917979a97c5c80fd2d78acc48152e87d6d Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 10 Jan 2006 08:23:51 +0000 Subject: [PATCH] * sysdeps/alpha/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/i386/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/mips/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/powerpc/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/s390/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/sh/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/sparc/sparc32/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/sparc/sparc64/jmpbuf-unwind.h: New file, moved from nptl/. * sysdeps/x86_64/jmpbuf-unwind.h: New file, moved from nptl/. --- ChangeLog | 10 ++++++++++ nptl/ChangeLog | 12 ++++++++++++ {nptl/sysdeps/i386 => sysdeps/alpha}/jmpbuf-unwind.h | 4 ++-- .../sparc/sparc32 => sysdeps/i386}/jmpbuf-unwind.h | 4 ++-- {nptl/sysdeps => sysdeps}/mips/jmpbuf-unwind.h | 2 +- {nptl/sysdeps => sysdeps}/powerpc/jmpbuf-unwind.h | 4 ++-- {nptl/sysdeps => sysdeps}/s390/jmpbuf-unwind.h | 2 +- {nptl/sysdeps => sysdeps}/sh/jmpbuf-unwind.h | 4 ++-- .../alpha => sysdeps/sparc/sparc32}/jmpbuf-unwind.h | 0 .../sparc/sparc64/jmpbuf-unwind.h | 0 {nptl/sysdeps => sysdeps}/x86_64/jmpbuf-unwind.h | 4 ++-- 11 files changed, 34 insertions(+), 12 deletions(-) rename {nptl/sysdeps/i386 => sysdeps/alpha}/jmpbuf-unwind.h (92%) rename {nptl/sysdeps/sparc/sparc32 => sysdeps/i386}/jmpbuf-unwind.h (92%) rename {nptl/sysdeps => sysdeps}/mips/jmpbuf-unwind.h (95%) rename {nptl/sysdeps => sysdeps}/powerpc/jmpbuf-unwind.h (92%) rename {nptl/sysdeps => sysdeps}/s390/jmpbuf-unwind.h (95%) rename {nptl/sysdeps => sysdeps}/sh/jmpbuf-unwind.h (92%) rename {nptl/sysdeps/alpha => sysdeps/sparc/sparc32}/jmpbuf-unwind.h (100%) rename {nptl/sysdeps => sysdeps}/sparc/sparc64/jmpbuf-unwind.h (100%) rename {nptl/sysdeps => sysdeps}/x86_64/jmpbuf-unwind.h (92%) diff --git a/ChangeLog b/ChangeLog index b855e39cdf..13610a92d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ 2006-01-10 Roland McGrath + * sysdeps/alpha/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/i386/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/mips/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/powerpc/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/s390/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/sh/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/sparc/sparc32/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/sparc/sparc64/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/x86_64/jmpbuf-unwind.h: New file, moved from nptl/. + * sysdeps/linkmap.h: File removed. 2006-01-07 Carlos O'Donell diff --git a/nptl/ChangeLog b/nptl/ChangeLog index aa46008767..7db66570ca 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,15 @@ +2006-01-10 Roland McGrath + + * sysdeps/alpha/jmpbuf-unwind.h: File moved to main source tree. + * sysdeps/i386/jmpbuf-unwind.h: Likewise. + * sysdeps/mips/jmpbuf-unwind.h: Likewise. + * sysdeps/powerpc/jmpbuf-unwind.h: Likewise. + * sysdeps/s390/jmpbuf-unwind.h: Likewise. + * sysdeps/sh/jmpbuf-unwind.h: Likewise. + * sysdeps/sparc/sparc32/jmpbuf-unwind.h: Likewise. + * sysdeps/sparc/sparc64/jmpbuf-unwind.h: Likewise. + * sysdeps/x86_64/jmpbuf-unwind.h: Likewise. + 2006-01-09 Roland McGrath * tst-initializers1-c89.c: New file. diff --git a/nptl/sysdeps/i386/jmpbuf-unwind.h b/sysdeps/alpha/jmpbuf-unwind.h similarity index 92% rename from nptl/sysdeps/i386/jmpbuf-unwind.h rename to sysdeps/alpha/jmpbuf-unwind.h index 83b7a01a0e..ca445f8d24 100644 --- a/nptl/sysdeps/i386/jmpbuf-unwind.h +++ b/sysdeps/alpha/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. @@ -38,5 +38,5 @@ _jmpbuf_sp (__jmp_buf regs) #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \ ((uintptr_t) (_address) - (_adj) < _jmpbuf_sp (_jmpbuf) - (_adj)) -/* We use the normal lobngjmp for unwinding. */ +/* We use the normal longjmp for unwinding. */ #define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val) diff --git a/nptl/sysdeps/sparc/sparc32/jmpbuf-unwind.h b/sysdeps/i386/jmpbuf-unwind.h similarity index 92% rename from nptl/sysdeps/sparc/sparc32/jmpbuf-unwind.h rename to sysdeps/i386/jmpbuf-unwind.h index 83b7a01a0e..ca445f8d24 100644 --- a/nptl/sysdeps/sparc/sparc32/jmpbuf-unwind.h +++ b/sysdeps/i386/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. @@ -38,5 +38,5 @@ _jmpbuf_sp (__jmp_buf regs) #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \ ((uintptr_t) (_address) - (_adj) < _jmpbuf_sp (_jmpbuf) - (_adj)) -/* We use the normal lobngjmp for unwinding. */ +/* We use the normal longjmp for unwinding. */ #define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val) diff --git a/nptl/sysdeps/mips/jmpbuf-unwind.h b/sysdeps/mips/jmpbuf-unwind.h similarity index 95% rename from nptl/sysdeps/mips/jmpbuf-unwind.h rename to sysdeps/mips/jmpbuf-unwind.h index 9ee03100e6..1ff8fc8957 100644 --- a/nptl/sysdeps/mips/jmpbuf-unwind.h +++ b/sysdeps/mips/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2005, 2006 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 diff --git a/nptl/sysdeps/powerpc/jmpbuf-unwind.h b/sysdeps/powerpc/jmpbuf-unwind.h similarity index 92% rename from nptl/sysdeps/powerpc/jmpbuf-unwind.h rename to sysdeps/powerpc/jmpbuf-unwind.h index d9090a591d..a6cfea074e 100644 --- a/nptl/sysdeps/powerpc/jmpbuf-unwind.h +++ b/sysdeps/powerpc/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. @@ -38,5 +38,5 @@ _jmpbuf_sp (__jmp_buf regs) #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \ ((uintptr_t) (_address) - (_adj) < _jmpbuf_sp (_jmpbuf) - (_adj)) -/* We use the normal lobngjmp for unwinding. */ +/* We use the normal longjmp for unwinding. */ #define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val) diff --git a/nptl/sysdeps/s390/jmpbuf-unwind.h b/sysdeps/s390/jmpbuf-unwind.h similarity index 95% rename from nptl/sysdeps/s390/jmpbuf-unwind.h rename to sysdeps/s390/jmpbuf-unwind.h index 81fa582540..ae7491ab77 100644 --- a/nptl/sysdeps/s390/jmpbuf-unwind.h +++ b/sysdeps/s390/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. diff --git a/nptl/sysdeps/sh/jmpbuf-unwind.h b/sysdeps/sh/jmpbuf-unwind.h similarity index 92% rename from nptl/sysdeps/sh/jmpbuf-unwind.h rename to sysdeps/sh/jmpbuf-unwind.h index 3ef178b4d6..4c84c42962 100644 --- a/nptl/sysdeps/sh/jmpbuf-unwind.h +++ b/sysdeps/sh/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. @@ -38,5 +38,5 @@ _jmpbuf_sp (__jmp_buf regs) #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \ ((uintptr_t) (_address) - (_adj) < _jmpbuf_sp (_jmpbuf) - (_adj)) -/* We use the normal lobngjmp for unwinding. */ +/* We use the normal longjmp for unwinding. */ #define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val) diff --git a/nptl/sysdeps/alpha/jmpbuf-unwind.h b/sysdeps/sparc/sparc32/jmpbuf-unwind.h similarity index 100% rename from nptl/sysdeps/alpha/jmpbuf-unwind.h rename to sysdeps/sparc/sparc32/jmpbuf-unwind.h diff --git a/nptl/sysdeps/sparc/sparc64/jmpbuf-unwind.h b/sysdeps/sparc/sparc64/jmpbuf-unwind.h similarity index 100% rename from nptl/sysdeps/sparc/sparc64/jmpbuf-unwind.h rename to sysdeps/sparc/sparc64/jmpbuf-unwind.h diff --git a/nptl/sysdeps/x86_64/jmpbuf-unwind.h b/sysdeps/x86_64/jmpbuf-unwind.h similarity index 92% rename from nptl/sysdeps/x86_64/jmpbuf-unwind.h rename to sysdeps/x86_64/jmpbuf-unwind.h index 1a36c53d11..2d1187df70 100644 --- a/nptl/sysdeps/x86_64/jmpbuf-unwind.h +++ b/sysdeps/x86_64/jmpbuf-unwind.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek , 2003. @@ -38,5 +38,5 @@ _jmpbuf_sp (__jmp_buf regs) #define _JMPBUF_UNWINDS_ADJ(_jmpbuf, _address, _adj) \ ((uintptr_t) (_address) - (_adj) < _jmpbuf_sp (_jmpbuf) - (_adj)) -/* We use the normal lobngjmp for unwinding. */ +/* We use the normal longjmp for unwinding. */ #define __libc_unwind_longjmp(buf, val) __libc_longjmp (buf, val)