aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--nptl/ChangeLog12
-rw-r--r--sysdeps/alpha/jmpbuf-unwind.h (renamed from nptl/sysdeps/i386/jmpbuf-unwind.h)4
-rw-r--r--sysdeps/i386/jmpbuf-unwind.h (renamed from nptl/sysdeps/sparc/sparc32/jmpbuf-unwind.h)4
-rw-r--r--sysdeps/mips/jmpbuf-unwind.h (renamed from nptl/sysdeps/mips/jmpbuf-unwind.h)2
-rw-r--r--sysdeps/powerpc/jmpbuf-unwind.h (renamed from nptl/sysdeps/powerpc/jmpbuf-unwind.h)4
-rw-r--r--sysdeps/s390/jmpbuf-unwind.h (renamed from nptl/sysdeps/s390/jmpbuf-unwind.h)2
-rw-r--r--sysdeps/sh/jmpbuf-unwind.h (renamed from nptl/sysdeps/sh/jmpbuf-unwind.h)4
-rw-r--r--sysdeps/sparc/sparc32/jmpbuf-unwind.h (renamed from nptl/sysdeps/alpha/jmpbuf-unwind.h)0
-rw-r--r--sysdeps/sparc/sparc64/jmpbuf-unwind.h (renamed from nptl/sysdeps/sparc/sparc64/jmpbuf-unwind.h)0
-rw-r--r--sysdeps/x86_64/jmpbuf-unwind.h (renamed from nptl/sysdeps/x86_64/jmpbuf-unwind.h)4
11 files changed, 34 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index b855e39cdf..13610a92d3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2006-01-10 Roland McGrath <roland@redhat.com>
+ * 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 <carlos@systemhalted.org>
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 <roland@redhat.com>
+
+ * 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 <roland@redhat.com>
* tst-initializers1-c89.c: New file.
diff --git a/nptl/sysdeps/i386/jmpbuf-unwind.h b/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 <jakub@redhat.com>, 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
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 <jakub@redhat.com>, 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
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
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 <jakub@redhat.com>, 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
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 <jakub@redhat.com>, 2003.
diff --git a/nptl/sysdeps/sh/jmpbuf-unwind.h b/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 <jakub@redhat.com>, 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
index 83b7a01a0e..83b7a01a0e 100644
--- a/nptl/sysdeps/alpha/jmpbuf-unwind.h
+++ b/sysdeps/sparc/sparc32/jmpbuf-unwind.h
diff --git a/nptl/sysdeps/sparc/sparc64/jmpbuf-unwind.h b/sysdeps/sparc/sparc64/jmpbuf-unwind.h
index efb6918c14..efb6918c14 100644
--- a/nptl/sysdeps/sparc/sparc64/jmpbuf-unwind.h
+++ b/sysdeps/sparc/sparc64/jmpbuf-unwind.h
diff --git a/nptl/sysdeps/x86_64/jmpbuf-unwind.h b/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 <jakub@redhat.com>, 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)