]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* version.h (VERSION): Define to 6. cvs/glibc-2_6 cvs/glibc-2_6-base glibc-2.6
authorUlrich Drepper <drepper@redhat.com>
Tue, 15 May 2007 06:49:29 +0000 (06:49 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 15 May 2007 06:49:29 +0000 (06:49 +0000)
* include/features.h (__GLIBC_MINOR__): Likewise.

ChangeLog
README
include/features.h
nptl/ChangeLog
nptl/TODO
nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S
nptl/sysdeps/unix/sysv/linux/powerpc/sem_post.c
nptl/sysdeps/unix/sysv/linux/sem_post.c
nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c
nptl/sysdeps/unix/sysv/linux/x86_64/sem_post.S
version.h

index f747f47515435f824c7d2176d561a5f220dc9d7a..3be75cc41879b9fa1235f2ea5b753b8256098458 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
 
+       * version.h (VERSION): Define to 6.
+       * include/features.h (__GLIBC_MINOR__): Likewise.
+
        * malloc/malloc.c: Use all small bin slots on 64-bit archs.
 
        * malloc/malloc.c (largebin_index): Really have 32 buckets with 64
diff --git a/README b/README
index 97b3a61e0640f56ce23d6d54cb126c987e813a74..7b82d80e97ef37cb4c5d868475262ee7a6d2b820 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This directory contains the version 2.5 release of the GNU C Library.
+This directory contains the version 2.6 release of the GNU C Library.
 
 The GNU C Library is the standard system C library for all GNU systems,
 and is an important part of what makes up a GNU system.  It provides the
@@ -52,7 +52,7 @@ The GNU C Library supports these configurations for using Linux kernels:
 
 The code for other CPU configurations supported by volunteers outside of
 the core glibc maintenance effort is contained in the separate `ports'
-add-on.  You can find glibc-ports-2.5 distributed separately in the
+add-on.  You can find glibc-ports-2.6 distributed separately in the
 same place where you got the main glibc distribution files.
 Currently these configurations are known to work using the `ports' add-on:
 
index ad9bbc70eec6df420fb2ef75e5258a1047d2e3b5..0c729e8a3ed70c85c70b35e025519cb66e3af05a 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (C) 1991,1992,1993,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
-       Free Software Foundation, Inc.
+/* Copyright (C) 1991,1992,1993,1995-2006,2007 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
 /* Major and minor version number of the GNU C library package.  Use
    these macros to test for features in specific releases.  */
 #define        __GLIBC__       2
-#define        __GLIBC_MINOR__ 5
+#define        __GLIBC_MINOR__ 6
 
 #define __GLIBC_PREREQ(maj, min) \
        ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
index 38ade7a96b502e2693da9af3cb3a38dec2d1eb97..47d36966c5883ecb5bc5b252ed6622b86a042e0c 100644 (file)
@@ -1,12 +1,5 @@
 2007-05-14  Ulrich Drepper  <drepper@redhat.com>
 
-       * sysdeps/unix/sysv/linux/sem_post.c: Only wake threads if old
-       value of semaphore was zero.
-       * sysdeps/unix/sysv/linux/i386/i486/sem_post.S: Likewise.
-       * sysdeps/unix/sysv/linux/powerpc/sem_post.c: Likewise.
-       * sysdeps/unix/sysv/linux/sparc/sparc32/sem_post.c: Likewise.
-       * sysdeps/unix/sysv/linux/x86_64/sem_post.S: Likewise.
-
        * sysdeps/unix/sysv/linux/x86_64/sem_wait.S: Remove unnecessary
        extra cancellation test.
        * sysdeps/unix/sysv/linux/x86_64/sem_timedwait.S: Likewise.
index d59717651207c8655f23565b764a0b900b55a442..70b8fe4f76288c16a3138b4ee97e51b45485067a 100644 (file)
--- a/nptl/TODO
+++ b/nptl/TODO
@@ -14,3 +14,18 @@ syscall needed.
 
 - test with threaded process terminating and semadj (?) being applied
   only after all threads are gone
+
+
+
+- semaphore changes:
+
+  - sem_post should only wake one thread and only when the state of
+    the semaphore changed from 0 to 1
+
+    this also requires that sem_wait and sem_timedwait don't drop the
+    post if they get canceled.
+
+  - possibly add counter field.  This requires reviving the
+    differences between old and new semaphose funtions.  The old ones
+    stay as they are now.  The new once can use an additional field
+    wich is the counter for the number of waiters
index 2813c20ef837905330004d6239c059c512717563..71e96d2228ef6f51175b0cd840cf9bdd97f485e9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -44,12 +44,9 @@ __new_sem_post:
        LOCK
        xaddl   %edx, (%ebx)
 
-       testl   %edx, %edx
-       jne     2f
-
        movl    $SYS_futex, %eax
        movl    $FUTEX_WAKE, %ecx
-       movl    $1, %edx
+       addl    $1, %edx
        ENTER_KERNEL
 
        testl   %eax, %eax
index 86dd0ebb3b1bbd6ca73e87c991cb5e87dcbb127a..91b9955181fb11bf574ccee8f22e3c8d23ace77d 100644 (file)
@@ -1,5 +1,5 @@
 /* sem_post -- post to a POSIX semaphore.  Powerpc version.
-   Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Paul Mackerras <paulus@au.ibm.com>, 2003.
 
@@ -32,14 +32,12 @@ __new_sem_post (sem_t *sem)
   int *futex = (int *) sem;
 
   __asm __volatile (__lll_rel_instr ::: "memory");
-  if (atomic_increment_val (futex) == 1)
+  int nr = atomic_increment_val (futex);
+  int err = lll_futex_wake (futex, nr);
+  if (__builtin_expect (err, 0) < 0)
     {
-      int err = lll_futex_wake (futex, 1);
-      if (__builtin_expect (err, 0) < 0)
-       {
-         __set_errno (-err);
-         return -1;
-       }
+      __set_errno (-err);
+      return -1;
     }
   return 0;
 }
index 641ce661a1f16d24f39b148858545ea703bb9360..671b43f7f79fff5a518b3554fc695c9b45dde76e 100644 (file)
@@ -1,5 +1,5 @@
 /* sem_post -- post to a POSIX semaphore.  Generic futex-using version.
-   Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
 
@@ -31,14 +31,12 @@ __new_sem_post (sem_t *sem)
 {
   int *futex = (int *) sem;
 
-  if (atomic_increment_val (futex) == 1)
+  int nr = atomic_increment_val (futex);
+  int err = lll_futex_wake (futex, nr);
+  if (__builtin_expect (err, 0) < 0)
     {
-      int err = lll_futex_wake (futex, 1);
-      if (__builtin_expect (err, 0) < 0)
-       {
-         __set_errno (-err);
-         return -1;
-       }
+      __set_errno (-err);
+      return -1;
     }
   return 0;
 }
index ba77aa90bd572fdc2f124f9755c7b68c5933268f..be1cc60b11fb100039941ea7144d84d64ad35ebc 100644 (file)
@@ -1,5 +1,5 @@
 /* sem_post -- post to a POSIX semaphore.  SPARC version.
-   Copyright (C) 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Jakub Jelinek <jakub@redhat.com>, 2003.
 
@@ -39,14 +39,11 @@ __new_sem_post (sem_t *sem)
       nr = ++*futex;
       __sparc32_atomic_do_unlock24 (futex + 1);
     }
-  if (nr == 1)
+  int err = lll_futex_wake (futex, nr);
+  if (__builtin_expect (err, 0) < 0)
     {
-      int err = lll_futex_wake (futex, 1);
-      if (__builtin_expect (err, 0) < 0)
-       {
-         __set_errno (-err);
-         return -1;
-       }
+      __set_errno (-err);
+      return -1;
     }
   return 0;
 }
index cc3a9a9cee2e09c9203b920c8d81718187a56053..7f608a59744cbf600969099647ba022ac44a0a84 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2005, 2007 Free Software Foundation, Inc.
+/* Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -41,18 +41,15 @@ sem_post:
        LOCK
        xaddl   %edx, (%rdi)
 
-       testl   %edx, %edx
-       jne     2f
-
        movl    $SYS_futex, %eax
        movl    $FUTEX_WAKE, %esi
-       movl    $1, %edx
+       incl    %edx
        syscall
 
        testq   %rax, %rax
        js      1f
 
-2:     xorl    %eax, %eax
+       xorl    %eax, %eax
        retq
 
 1:
index acd0ed11eb77ed42312db09018a3cefa75786bbf..d70070f2a308a9913eed7b77018fd1c3451868b5 100644 (file)
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
 /* This file just defines the current version number of libc.  */
 
-#define RELEASE "development"
-#define VERSION "2.5.90"
+#define RELEASE "stable"
+#define VERSION "2.6"