|
|
25845f |
commit 498a22333b835a598ccaed4656e97a0ec3573665
|
|
|
25845f |
Author: Roland McGrath <roland@hack.frob.com>
|
|
|
25845f |
Date: Fri Mar 14 10:44:34 2014 -0700
|
|
|
25845f |
|
|
|
25845f |
Compile with -Wundef.
|
|
|
25845f |
|
|
|
25845f |
Conflicts:
|
|
|
25845f |
Makeconfig
|
|
|
25845f |
(Textual conflict due to glibc-rh1418978-2-6.patch.)
|
|
|
25845f |
sysdeps/microblaze/nptl/tls.h
|
|
|
25845f |
(Our tree does not have a microblaze port, removed manually.)
|
|
|
25845f |
|
|
|
25845f |
diff --git a/Makeconfig b/Makeconfig
|
|
|
25845f |
index f23fd93febdf4a86..02f1cc1255c5ac07 100644
|
|
|
25845f |
--- a/Makeconfig
|
|
|
25845f |
+++ b/Makeconfig
|
|
|
25845f |
@@ -643,6 +643,7 @@ ifeq ($(all-warnings),yes)
|
|
|
25845f |
else
|
|
|
25845f |
+gccwarn := -Wall -Wwrite-strings -Winline
|
|
|
25845f |
endif
|
|
|
25845f |
++gccwarn += -Wundef
|
|
|
25845f |
+gccwarn-c = -Wstrict-prototypes -Werror=implicit-function-declaration
|
|
|
25845f |
|
|
|
25845f |
# We do not depend on the address of constants in different files to be
|
|
|
25845f |
diff --git a/include/errno.h b/include/errno.h
|
|
|
25845f |
index d26a9ee3ff320e3a..7df41dfc3166ef90 100644
|
|
|
25845f |
--- a/include/errno.h
|
|
|
25845f |
+++ b/include/errno.h
|
|
|
25845f |
@@ -6,6 +6,11 @@
|
|
|
25845f |
|
|
|
25845f |
# if IS_IN (rtld)
|
|
|
25845f |
# include <dl-sysdep.h>
|
|
|
25845f |
+# ifndef RTLD_PRIVATE_ERRNO
|
|
|
25845f |
+# error "dl-sysdep.h must define RTLD_PRIVATE_ERRNO!"
|
|
|
25845f |
+# endif
|
|
|
25845f |
+# else
|
|
|
25845f |
+# define RTLD_PRIVATE_ERRNO 0
|
|
|
25845f |
# endif
|
|
|
25845f |
|
|
|
25845f |
# if RTLD_PRIVATE_ERRNO
|
|
|
25845f |
diff --git a/include/stackinfo.h b/include/stackinfo.h
|
|
|
25845f |
new file mode 100644
|
|
|
25845f |
index 0000000000000000..b9b227848753ceb8
|
|
|
25845f |
--- /dev/null
|
|
|
25845f |
+++ b/include/stackinfo.h
|
|
|
25845f |
@@ -0,0 +1,42 @@
|
|
|
25845f |
+/* Details about the machine's stack: wrapper header.
|
|
|
25845f |
+ Copyright (C) 2014 Free Software Foundation, Inc.
|
|
|
25845f |
+ This file is part of the GNU C Library.
|
|
|
25845f |
+
|
|
|
25845f |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
25845f |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
25845f |
+ License as published by the Free Software Foundation; either
|
|
|
25845f |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
25845f |
+
|
|
|
25845f |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
25845f |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
25845f |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
25845f |
+ Lesser General Public License for more details.
|
|
|
25845f |
+
|
|
|
25845f |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
25845f |
+ License along with the GNU C Library; if not, see
|
|
|
25845f |
+ <http://www.gnu.org/licenses/>. */
|
|
|
25845f |
+
|
|
|
25845f |
+#ifndef _INCLUDE_STACKINFO_H
|
|
|
25845f |
+#define _INCLUDE_STACKINFO_H 1
|
|
|
25845f |
+
|
|
|
25845f |
+/* A sysdeps/.../stackinfo.h file defines details for the CPU.
|
|
|
25845f |
+ It is obliged to define either _STACK_GROWS_DOWN or _STACK_GROWS_UP. */
|
|
|
25845f |
+#include_next <stackinfo.h>
|
|
|
25845f |
+
|
|
|
25845f |
+#if defined _STACK_GROWS_DOWN && _STACK_GROWS_DOWN
|
|
|
25845f |
+# ifdef _STACK_GROWS_UP
|
|
|
25845f |
+# error "stackinfo.h should not define both!"
|
|
|
25845f |
+# else
|
|
|
25845f |
+# define _STACK_GROWS_UP 0
|
|
|
25845f |
+# endif
|
|
|
25845f |
+#elif defined _STACK_GROWS_UP && _STACK_GROWS_UP
|
|
|
25845f |
+# ifdef _STACK_GROWS_DOWN
|
|
|
25845f |
+# error "stackinfo.h should not define both!"
|
|
|
25845f |
+# else
|
|
|
25845f |
+# define _STACK_GROWS_DOWN 0
|
|
|
25845f |
+# endif
|
|
|
25845f |
+#else
|
|
|
25845f |
+# error "stackinfo.h must define _STACK_GROWS_UP or _STACK_GROWS_DOWN!"
|
|
|
25845f |
+#endif
|
|
|
25845f |
+
|
|
|
25845f |
+#endif /* include/stackinfo.h */
|
|
|
25845f |
diff --git a/nptl/sysdeps/i386/tls.h b/nptl/sysdeps/i386/tls.h
|
|
|
25845f |
index 90c7a534bfd0ed16..55877d71d2051d4c 100644
|
|
|
25845f |
--- a/nptl/sysdeps/i386/tls.h
|
|
|
25845f |
+++ b/nptl/sysdeps/i386/tls.h
|
|
|
25845f |
@@ -102,9 +102,6 @@ union user_desc_init
|
|
|
25845f |
};
|
|
|
25845f |
|
|
|
25845f |
|
|
|
25845f |
-/* Get the thread descriptor definition. */
|
|
|
25845f |
-# include <nptl/descr.h>
|
|
|
25845f |
-
|
|
|
25845f |
/* This is the size of the initial TCB. Can't be just sizeof (tcbhead_t),
|
|
|
25845f |
because NPTL getpid, __libc_alloca_cutoff etc. need (almost) the whole
|
|
|
25845f |
struct pthread even when not linked with -lpthread. */
|
|
|
25845f |
@@ -122,6 +119,10 @@ union user_desc_init
|
|
|
25845f |
/* The TCB can have any size and the memory following the address the
|
|
|
25845f |
thread pointer points to is unspecified. Allocate the TCB there. */
|
|
|
25845f |
# define TLS_TCB_AT_TP 1
|
|
|
25845f |
+# define TLS_DTV_AT_TP 0
|
|
|
25845f |
+
|
|
|
25845f |
+/* Get the thread descriptor definition. */
|
|
|
25845f |
+# include <nptl/descr.h>
|
|
|
25845f |
|
|
|
25845f |
|
|
|
25845f |
/* Install the dtv pointer. The pointer passed is to the element with
|
|
|
25845f |
diff --git a/nptl/sysdeps/powerpc/tls.h b/nptl/sysdeps/powerpc/tls.h
|
|
|
25845f |
index 33efc7aea638f138..a04dfa89aa1ec73c 100644
|
|
|
25845f |
--- a/nptl/sysdeps/powerpc/tls.h
|
|
|
25845f |
+++ b/nptl/sysdeps/powerpc/tls.h
|
|
|
25845f |
@@ -49,6 +49,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* We use the multiple_threads field in the pthread struct */
|
|
|
25845f |
#define TLS_MULTIPLE_THREADS_IN_TCB 1
|
|
|
25845f |
@@ -56,6 +57,7 @@ typedef union dtv
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
|
|
|
25845f |
+
|
|
|
25845f |
/* The stack_guard is accessed directly by GCC -fstack-protector code,
|
|
|
25845f |
so it is a part of public ABI. The dtv and pointer_guard fields
|
|
|
25845f |
are private. */
|
|
|
25845f |
diff --git a/nptl/sysdeps/s390/tls.h b/nptl/sysdeps/s390/tls.h
|
|
|
25845f |
index 4b1ce051c4a87652..580196b7bfee3046 100644
|
|
|
25845f |
--- a/nptl/sysdeps/s390/tls.h
|
|
|
25845f |
+++ b/nptl/sysdeps/s390/tls.h
|
|
|
25845f |
@@ -73,9 +73,6 @@ typedef struct
|
|
|
25845f |
/* Get system call information. */
|
|
|
25845f |
# include <sysdep.h>
|
|
|
25845f |
|
|
|
25845f |
-/* Get the thread descriptor definition. */
|
|
|
25845f |
-# include <nptl/descr.h>
|
|
|
25845f |
-
|
|
|
25845f |
/* This is the size of the initial TCB. Can't be just sizeof (tcbhead_t),
|
|
|
25845f |
because NPTL getpid, __libc_alloca_cutoff etc. need (almost) the whole
|
|
|
25845f |
struct pthread even when not linked with -lpthread. */
|
|
|
25845f |
@@ -93,6 +90,10 @@ typedef struct
|
|
|
25845f |
/* The TCB can have any size and the memory following the address the
|
|
|
25845f |
thread pointer points to is unspecified. Allocate the TCB there. */
|
|
|
25845f |
# define TLS_TCB_AT_TP 1
|
|
|
25845f |
+# define TLS_DTV_AT_TP 0
|
|
|
25845f |
+
|
|
|
25845f |
+/* Get the thread descriptor definition. */
|
|
|
25845f |
+# include <nptl/descr.h>
|
|
|
25845f |
|
|
|
25845f |
|
|
|
25845f |
/* Install the dtv pointer. The pointer passed is to the element with
|
|
|
25845f |
diff --git a/nptl/sysdeps/sh/tls.h b/nptl/sysdeps/sh/tls.h
|
|
|
25845f |
index a7f53dfecf0ca6d6..4659af51c0be7595 100644
|
|
|
25845f |
--- a/nptl/sysdeps/sh/tls.h
|
|
|
25845f |
+++ b/nptl/sysdeps/sh/tls.h
|
|
|
25845f |
@@ -76,6 +76,7 @@ typedef struct
|
|
|
25845f |
|
|
|
25845f |
/* The TLS blocks start right after the TCB. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/nptl/sysdeps/sparc/tls.h b/nptl/sysdeps/sparc/tls.h
|
|
|
25845f |
index cfc9d96c67027caf..2ef0d4e1012259ad 100644
|
|
|
25845f |
--- a/nptl/sysdeps/sparc/tls.h
|
|
|
25845f |
+++ b/nptl/sysdeps/sparc/tls.h
|
|
|
25845f |
@@ -69,9 +69,6 @@ typedef struct
|
|
|
25845f |
/* Get system call information. */
|
|
|
25845f |
# include <sysdep.h>
|
|
|
25845f |
|
|
|
25845f |
-/* Get the thread descriptor definition. */
|
|
|
25845f |
-# include <nptl/descr.h>
|
|
|
25845f |
-
|
|
|
25845f |
register struct pthread *__thread_self __asm__("%g7");
|
|
|
25845f |
|
|
|
25845f |
/* This is the size of the initial TCB. Can't be just sizeof (tcbhead_t),
|
|
|
25845f |
@@ -91,6 +88,10 @@ register struct pthread *__thread_self __asm__("%g7");
|
|
|
25845f |
/* The TCB can have any size and the memory following the address the
|
|
|
25845f |
thread pointer points to is unspecified. Allocate the TCB there. */
|
|
|
25845f |
# define TLS_TCB_AT_TP 1
|
|
|
25845f |
+# define TLS_DTV_AT_TP 0
|
|
|
25845f |
+
|
|
|
25845f |
+/* Get the thread descriptor definition. */
|
|
|
25845f |
+# include <nptl/descr.h>
|
|
|
25845f |
|
|
|
25845f |
/* Install the dtv pointer. The pointer passed is to the element with
|
|
|
25845f |
index -1 which contain the length. */
|
|
|
25845f |
diff --git a/nptl/sysdeps/x86_64/tls.h b/nptl/sysdeps/x86_64/tls.h
|
|
|
25845f |
index cfba4e142ac5dae8..37e9af71b80d18b0 100644
|
|
|
25845f |
--- a/nptl/sysdeps/x86_64/tls.h
|
|
|
25845f |
+++ b/nptl/sysdeps/x86_64/tls.h
|
|
|
25845f |
@@ -91,10 +91,6 @@ typedef struct
|
|
|
25845f |
/* Get system call information. */
|
|
|
25845f |
# include <sysdep.h>
|
|
|
25845f |
|
|
|
25845f |
-
|
|
|
25845f |
-/* Get the thread descriptor definition. */
|
|
|
25845f |
-# include <nptl/descr.h>
|
|
|
25845f |
-
|
|
|
25845f |
#ifndef LOCK_PREFIX
|
|
|
25845f |
# ifdef UP
|
|
|
25845f |
# define LOCK_PREFIX /* nothing */
|
|
|
25845f |
@@ -120,6 +116,10 @@ typedef struct
|
|
|
25845f |
/* The TCB can have any size and the memory following the address the
|
|
|
25845f |
thread pointer points to is unspecified. Allocate the TCB there. */
|
|
|
25845f |
# define TLS_TCB_AT_TP 1
|
|
|
25845f |
+# define TLS_DTV_AT_TP 0
|
|
|
25845f |
+
|
|
|
25845f |
+/* Get the thread descriptor definition. */
|
|
|
25845f |
+# include <nptl/descr.h>
|
|
|
25845f |
|
|
|
25845f |
|
|
|
25845f |
/* Install the dtv pointer. The pointer passed is to the element with
|
|
|
25845f |
diff --git a/ports/sysdeps/hppa/nptl/tls.h b/ports/sysdeps/hppa/nptl/tls.h
|
|
|
25845f |
index 5eb55a53603bb31e..be14fe6599c9f41b 100644
|
|
|
25845f |
--- a/ports/sysdeps/hppa/nptl/tls.h
|
|
|
25845f |
+++ b/ports/sysdeps/hppa/nptl/tls.h
|
|
|
25845f |
@@ -51,6 +51,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/aarch64/nptl/tls.h b/sysdeps/aarch64/nptl/tls.h
|
|
|
25845f |
index 05135db57ab69ef6..e08ff732efcc4fa2 100644
|
|
|
25845f |
--- a/sysdeps/aarch64/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/aarch64/nptl/tls.h
|
|
|
25845f |
@@ -48,6 +48,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/alpha/nptl/tls.h b/sysdeps/alpha/nptl/tls.h
|
|
|
25845f |
index 18c29c80fa369e35..f593ba7162954e99 100644
|
|
|
25845f |
--- a/sysdeps/alpha/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/alpha/nptl/tls.h
|
|
|
25845f |
@@ -42,6 +42,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/arm/nptl/tls.h b/sysdeps/arm/nptl/tls.h
|
|
|
25845f |
index 52f695e58b22b406..00b1e53c33064a2e 100644
|
|
|
25845f |
--- a/sysdeps/arm/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/arm/nptl/tls.h
|
|
|
25845f |
@@ -49,6 +49,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/ia64/nptl/tls.h b/sysdeps/ia64/nptl/tls.h
|
|
|
25845f |
index 77574e55db890043..f270f958bcfc53de 100644
|
|
|
25845f |
--- a/sysdeps/ia64/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/ia64/nptl/tls.h
|
|
|
25845f |
@@ -87,6 +87,7 @@ register struct pthread *__thread_self __asm__("r13");
|
|
|
25845f |
|
|
|
25845f |
/* The DTV is allocated at the TP; the TCB is placed elsewhere. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/m68k/nptl/tls.h b/sysdeps/m68k/nptl/tls.h
|
|
|
25845f |
index 8b0909237b303695..7f4bbfb9162dd610 100644
|
|
|
25845f |
--- a/sysdeps/m68k/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/m68k/nptl/tls.h
|
|
|
25845f |
@@ -49,6 +49,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/mach/hurd/i386/tls.h b/sysdeps/mach/hurd/i386/tls.h
|
|
|
25845f |
index d0a72f0e5c032820..8619820d3b0502b5 100644
|
|
|
25845f |
--- a/sysdeps/mach/hurd/i386/tls.h
|
|
|
25845f |
+++ b/sysdeps/mach/hurd/i386/tls.h
|
|
|
25845f |
@@ -26,6 +26,7 @@
|
|
|
25845f |
/* The TCB can have any size and the memory following the address the
|
|
|
25845f |
thread pointer points to is unspecified. Allocate the TCB there. */
|
|
|
25845f |
#define TLS_TCB_AT_TP 1
|
|
|
25845f |
+#define TLS_DTV_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
#ifndef __ASSEMBLER__
|
|
|
25845f |
|
|
|
25845f |
diff --git a/sysdeps/mips/nptl/tls.h b/sysdeps/mips/nptl/tls.h
|
|
|
25845f |
index 8a97437bad4752c4..669a79c0c64cb566 100644
|
|
|
25845f |
--- a/sysdeps/mips/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/mips/nptl/tls.h
|
|
|
25845f |
@@ -62,6 +62,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* Get the thread descriptor definition. */
|
|
|
25845f |
# include <nptl/descr.h>
|
|
|
25845f |
diff --git a/sysdeps/tile/nptl/tls.h b/sysdeps/tile/nptl/tls.h
|
|
|
25845f |
index 303a95e000fee30f..132de9021e5651f0 100644
|
|
|
25845f |
--- a/sysdeps/tile/nptl/tls.h
|
|
|
25845f |
+++ b/sysdeps/tile/nptl/tls.h
|
|
|
25845f |
@@ -49,6 +49,7 @@ typedef union dtv
|
|
|
25845f |
|
|
|
25845f |
/* The TP points to the start of the thread blocks. */
|
|
|
25845f |
# define TLS_DTV_AT_TP 1
|
|
|
25845f |
+# define TLS_TCB_AT_TP 0
|
|
|
25845f |
|
|
|
25845f |
/* We use the multiple_threads field in the pthread struct */
|
|
|
25845f |
#define TLS_MULTIPLE_THREADS_IN_TCB 1
|