patches/glibc/linuxthreads-2.1.3/rh62-05-glibc-2.1.3-pthread.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 17 16:22:51 2007 +0000 (2007-05-17)
changeset 96 aa1a9fbd6eb8
permissions -rw-r--r--
Debug facilities:
- add a framework to easily add new ones
- add gdb as a first debug facility
- add patches for gdb
After the kernel checked its installed headers, clean up the mess of .checked.* files.
Reorder scripts/crosstool.sh:
- dump the configuration early
- renice early
- get info about build system early, when setting up the environment
- when in cross or native, the host tools are those of the build system, and only in this case
- elapsed time calculations moved to scripts/functions
Remove handling of the color: it's gone once and for all.
Update tools/addToolVersion.sh:
- handle debug facilities
- commonalise some code
- remove dead tools (cygwin, tcc)
Point to my address for bug reports.
yann@1
     1
2000-08-03  Ulrich Drepper  <drepper@redhat.com>
yann@1
     2
yann@1
     3
	* pthread.c (__pthread_set_own_extricate_if): Remove locking.
yann@1
     4
yann@1
     5
--- glibc-2.1.3/linuxthreads/pthread.c.jj	Wed Mar 22 22:26:01 2000
yann@1
     6
+++ glibc-2.1.3/linuxthreads/pthread.c	Fri Aug 25 09:37:26 2000
yann@1
     7
@@ -775,9 +775,7 @@ weak_alias (__pthread_getconcurrency, pt
yann@1
     8
 
yann@1
     9
 void __pthread_set_own_extricate_if(pthread_descr self, pthread_extricate_if *peif)
yann@1
    10
 {
yann@1
    11
-  __pthread_lock(self->p_lock, self);
yann@1
    12
   THREAD_SETMEM(self, p_extricate, peif);
yann@1
    13
-  __pthread_unlock(self->p_lock);
yann@1
    14
 }
yann@1
    15
 
yann@1
    16
 /* Primitives for controlling thread execution */