]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 20 Feb 2004 06:07:55 +0000 (06:07 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 20 Feb 2004 06:07:55 +0000 (06:07 +0000)
2004-02-19  Steven Munroe  <sjmunroe@us.ibm.com>

* sysdeps/generic/libc-start.c [LIBC_START_DISABLE_INLINE] (STATIC):
Define as static.
* sysdeps/powerpc/elf/libc-start.c: Define LIBC_START_DISABLE_INLINE
because gcc does not allow inline of functions that call setjmp.

2004-02-19  Steven Munroe  <sjmunroe@us.ibm.com>

* sysdeps/powerpc/powerpc64/Makefile: Use -finline-limit.

2004-02-19  Jakub Jelinek  <jakub@redhat.com>

* elf/rtld.c (_dl_argv): If DL_ARGV_NOT_RELRO defined, don't
use attribute_relro for _dl_argv.
* sysdeps/alpha/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
* sysdeps/ia64/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
* sysdeps/sparc/sparc32/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
* sysdeps/sparc/sparc64/dl-machine.h (DL_ARGV_NOT_RELRO): Define.

vfork instead of fork.

ChangeLog
elf/rtld.c
nptl/ChangeLog
nptl/sysdeps/pthread/pthread_barrier_wait.c
sysdeps/alpha/dl-machine.h
sysdeps/generic/libc-start.c
sysdeps/ia64/dl-machine.h
sysdeps/powerpc/elf/libc-start.c
sysdeps/powerpc/powerpc64/Makefile
sysdeps/sparc/sparc32/dl-machine.h
sysdeps/sparc/sparc64/dl-machine.h

index eb2046750e98388c9c7df467edf140c1a71e255e..8887e68eba3176b08bac6010674ddf6db7b19643 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,27 @@
+2004-02-19  Steven Munroe  <sjmunroe@us.ibm.com>
+
+       * sysdeps/generic/libc-start.c [LIBC_START_DISABLE_INLINE] (STATIC):
+       Define as static.
+       * sysdeps/powerpc/elf/libc-start.c: Define LIBC_START_DISABLE_INLINE
+       because gcc does not allow inline of functions that call setjmp.
+
+2004-02-19  Steven Munroe  <sjmunroe@us.ibm.com>
+
+       * sysdeps/powerpc/powerpc64/Makefile: Use -finline-limit.
+
+2004-02-19  Jakub Jelinek  <jakub@redhat.com>
+
+       * elf/rtld.c (_dl_argv): If DL_ARGV_NOT_RELRO defined, don't
+       use attribute_relro for _dl_argv.
+       * sysdeps/alpha/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
+       * sysdeps/ia64/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
+       * sysdeps/sparc/sparc32/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
+       * sysdeps/sparc/sparc64/dl-machine.h (DL_ARGV_NOT_RELRO): Define.
+
 2004-02-19  Ulrich Drepper  <drepper@redhat.com>
 
        * libio/iopopen.c (_IO_new_proc_open): It's not kosher to use
-       cfork instead of fork.
+       vfork instead of fork.
        * libio/oldiopopen.c (_IO_old_proc_open): Likewise.
 
        * sysdeps/unix/clock_settime.c (clock_settime): Fix typo which
index f988dd451989e7085e132dc7f774179af7d46b7e..0ce1fda229542d406d2297ab581962d7e7659671 100644 (file)
@@ -68,7 +68,11 @@ enum mode { normal, list, verify, trace };
 static void process_envvars (enum mode *modep);
 
 int _dl_argc attribute_relro attribute_hidden;
+#ifdef DL_ARGV_NOT_RELRO
+char **_dl_argv = NULL;
+#else
 char **_dl_argv attribute_relro = NULL;
+#endif
 INTDEF(_dl_argv)
 
 /* Nonzero if we were run directly.  */
index 43107a38c7501a31f20b4da2d9804a5062fcbfd8..9a3b463e6bb6ee9df05f6e9c7cd3dda290aafbe7 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-19  Andreas Schwab  <schwab@suse.de>
+
+       * sysdeps/pthread/pthread_barrier_wait.c (pthread_barrier_wait):
+       Fix last change.
+
 2004-02-18  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S
index f6dc3e5f1690ac35987f1782e273fdc953ee5ace..f0f65b05c7dfbafecd60ca8a8b59047f93eb1e79 100644 (file)
@@ -73,7 +73,7 @@ pthread_barrier_wait (barrier)
   unsigned int init_count = ibarrier->init_count;
 
   /* If this was the last woken thread, unlock.  */
-  if (atomic_exchange_and_add (ibarrier->left, 1) == init_count - 1)
+  if (atomic_exchange_and_add (&ibarrier->left, 1) == init_count - 1)
     /* We are done.  */
     lll_unlock (ibarrier->lock);
 
index 3616faedbff3c7b78faab00a3272774a05c8d9e9..cf96b778bd1939214e1d2689f90f0bfc8b98b48f 100644 (file)
@@ -293,6 +293,10 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
   strong_alias (_dl_runtime_resolve, _dl_runtime_profile);
 #endif
 
+/* _dl_argv cannot be attribute_relro, because _dl_start_user below
+   might write into it after _dl_start returns.  */
+#define DL_ARGV_NOT_RELRO 1
+
 /* Initial entry point code for the dynamic linker.
    The C function `_dl_start' is the real entry point;
    its return value is the user program's entry point.  */
index 582ae0b6a2688c3d08de24601713fa17021d342b..0708c91cfc27247d6a7f96573e710983695c7a42 100644 (file)
@@ -44,7 +44,11 @@ extern void __pthread_initialize_minimal (void)
 
 
 #ifdef LIBC_START_MAIN
-# define STATIC static inline __attribute__ ((always_inline))
+# ifdef LIBC_START_DISABLE_INLINE
+#  define STATIC static
+# else
+#  define STATIC static inline __attribute__ ((always_inline))
+# endif
 #else
 # define STATIC
 # define LIBC_START_MAIN BP_SYM (__libc_start_main)
index 5c0ff9f20cd09ad2520d37ccd612a079123b7fef..50a88221056c4f73b758b247653724c1c10aa457 100644 (file)
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation inline functions.  IA-64 version.
-   Copyright (C) 1995-1997, 2000-2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1995-1997, 2000-2003, 2004 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
@@ -272,6 +272,10 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
 #define DL_STACK_END(cookie) \
   ((void *) (((long) (cookie)) - 16))
 
+/* _dl_argv cannot be attribute_relro, because _dl_start_user below
+   might write into it after _dl_start returns.  */
+#define DL_ARGV_NOT_RELRO 1
+
 /* Initial entry point code for the dynamic linker.
    The C function `_dl_start' is the real entry point;
    its return value is the user program's entry point.  */
index bbc4eeb3b8b4dbe4401c411420d039d77143ba9f..1e1d68297ee2e46261021fd80fa16a8cd87a7576 100644 (file)
@@ -49,6 +49,7 @@ __aux_init_cache (ElfW(auxv_t) *av)
 
 /* The main work is done in the generic function.  */
 #define LIBC_START_MAIN generic_start_main
+#define LIBC_START_DISABLE_INLINE
 #define LIBC_START_MAIN_AUXVEC_ARG
 #define MAIN_AUXVEC_ARG
 #define INIT_MAIN_ARGS
index 97c7cde12957d15497d73ae7bcd6dbab94231ddb..758b856854829cdb8f0fcacb750331bd9350762b 100644 (file)
@@ -20,5 +20,5 @@ endif
 
 ifeq ($(subdir),elf)
 # help gcc inline asm code from dl-machine.h
-+cflags += --param max-inline-insns=2000
++cflags += -finline-limit=2000
 endif
index cd409ae57c2b11c876a323721cf14b5bae0f53a9..70ba0ae76fed433d58ba6228f3464f9d5b010fb6 100644 (file)
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation inline functions.  SPARC version.
-   Copyright (C) 1996-2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 1996-2003, 2004 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
@@ -253,6 +253,10 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
 #define DL_STACK_END(cookie) \
   ((void *) (((long) (cookie)) - (22 - 6) * 4))
 
+/* _dl_argv cannot be attribute_relro, because _dl_start_user below
+   might write into it after _dl_start returns.  */
+#define DL_ARGV_NOT_RELRO 1
+
 /* Initial entry point code for the dynamic linker.
    The C function `_dl_start' is the real entry point;
    its return value is the user program's entry point.  */
index ad27e732bfdacdc36e49fa3a86318c05cb9102f5..b40d2fbd573bef201be386186cb0c0d7f4e62dcd 100644 (file)
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation inline functions.  Sparc64 version.
-   Copyright (C) 1997,1998,1999,2000,2001,2002, 2003
+   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
        Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -671,6 +671,10 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile)
 #define DL_STACK_END(cookie) \
   ((void *) (((long) (cookie)) - (22 - 6) * 8 - STACK_BIAS))
 
+/* _dl_argv cannot be attribute_relro, because _dl_start_user below
+   might write into it after _dl_start returns.  */
+#define DL_ARGV_NOT_RELRO 1
+
 /* Initial entry point code for the dynamic linker.
    The C function `_dl_start' is the real entry point;
    its return value is the user program's entry point.  */
This page took 0.076895 seconds and 5 git commands to generate.