]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Prepare for 2.3.3-57
authorJakub Jelinek <jakub@redhat.com>
Sat, 25 Sep 2004 08:04:28 +0000 (08:04 +0000)
committerJakub Jelinek <jakub@redhat.com>
Sat, 25 Sep 2004 08:04:28 +0000 (08:04 +0000)
fedora/glibc.spec.in
linuxthreads/sysdeps/i386/useldt.h

index 416ad0dfe58364bae95e78cd4a71288613e51b09..cfdcbbf22744751e59d01083460a85cb66e2f583 100644 (file)
@@ -1241,6 +1241,10 @@ rm -f *.filelist*
 %changelog
 * Sat Sep 25 2004 Jakub Jelinek <jakub@redhat.com> 2.3.3-57
 - update from CVS
+  - fix setuid in LD_ASSUME_KERNEL=2.2.5 libc (#133558)
+  - fix nis locking (#132204)
+  - RTLD_DEEPBIND support
+  - fix pthread_create bugs (BZ #401, #405)
 
 * Wed Sep 22 2004 Roland McGrath <roland@redhat.com> 2.3.3-56
 - migrated CVS to fedora-branch in sources.redhat.com glibc repository
index 4ac82f1ab078bc912e0b9885bd3c28b0cca206c5..9a898ede744a6185117cf067a1a75ae7180c0cae 100644 (file)
@@ -1,6 +1,6 @@
 /* Special definitions for ix86 machine using segment register based
    thread descriptor.
-   Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>.
 
@@ -19,6 +19,9 @@
    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA. */
 
+#ifndef __USELDT_H
+#define __USELDT_H 1
+
 #ifndef __ASSEMBLER__
 #include <stddef.h>    /* For offsetof.  */
 #include <stdlib.h>    /* For abort().  */
@@ -312,3 +315,5 @@ extern int __have_no_set_thread_area;
 /* Maximum size of the stack if the rlimit is unlimited.  */
 #define ARCH_STACK_MAX_SIZE    8*1024*1024
 #endif
+
+#endif