summaryrefslogtreecommitdiffstats
path: root/libpthread/linuxthreads/join.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge from trunk."Steven J. Hill"2006-08-181-1/+1
|
* Copy from trunk."Steven J. Hill"2006-02-231-0/+220
|
* Remove old directories."Steven J. Hill"2005-11-161-221/+0
|
* Merge with trunk. "So do that funky merge whiiite boy...""Steven J. Hill"2005-09-131-2/+2
|
* Merge from trunk."Steven J. Hill"2005-07-231-5/+5
|
* Fix death event reporting properly.Joakim Tjernlund2005-02-011-4/+2
| | | | | | Now GDB is happy and death events are reported as [Thread 5126 (LWP 192) exited] without GDB bailing out.
* Restore it so we get gdbEric Andersen2005-01-311-1/+1
| | | | | | [Thread 1026 (Missing) exited] messages again, while leaving the __linuxthreads_death_event() call disabled, as it still breaks gdb.
* Hi Erik and ManuelEric Andersen2005-01-291-1/+3
| | | | | | | | | | | | | | | | | | Long time no see :) It appears uClibc pthreads native debugging is broken w.r.t thread exit handling in uClibc(at least on PPC). When debugging ex7, gdb(6.2.1) bails out as soon as a thread exits. I found a comment in gdb that TD_DEATH handling was broken for glibc 2.3.1, so I figured that maybe it was broken in uClibc also. I added a #if 0 #endif in pthread_exit( see patch below) and then gdb behaved again. While looking into this I found a few differences( included in the patch) between glibc and uClibc. Don't know if these makes a difference, but I leave that to you to decide. Jocke
* Major update for pthreads, based in large part on improvementsEric Andersen2003-02-271-5/+13
| | | | | from glibc 2.3. This should make threads much more efficient. -Erik
* Merge in the pthread library. This is the linuxthreads library taken fromEric Andersen2002-02-201-0/+213
glibc 2.1.3 and ported to work with uClibc by Stefan Soucek and Erik Andersen (me). Stefan has hacked things up such that linuxthreads runs on MMU-less systems (tested only on arm-nommu). Erik cleaned things up and made it work properly as a shared library. -Erik