summaryrefslogtreecommitdiffstats
path: root/libpthread/linuxthreads/join.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded ; after *_aliasPeter S. Mazinger2006-03-091-1/+1
|
* change asm/volatile to __x__Peter S. Mazinger2006-02-011-2/+2
|
* initial import of latest linuxthreadsMike Frysinger2006-01-311-0/+220
|
* rename current stable linuxthreads to linuxthreads.old to prepare for import ↵Mike Frysinger2005-11-151-221/+0
| | | | of latest glibc version
* revert linuxthreads to pre rev 11377 (i.e. before the massive attempt to ↵Mike Frysinger2005-11-151-2/+2
| | | | import glibc updates) while keeping the few bugfixes ... idea is to keep both old and new linuxthreads around so we can hack on the new version while delivering the old stable version to end users
* newer linuxthreads renamed the function invalid_handle() to nonexisting_handle()Mike Frysinger2005-09-091-2/+2
|
* update the debug macros so they build with newer gcc versionsMike Frysinger2005-07-011-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