| Age | Commit message (Expand) | Author |
| 2003-04-18 | More agressive assertions. Change a number of detected conditions, which | nathanw |
| 2003-04-18 | Use a __predict_true() in the definition of pthread__assert(). | nathanw |
| 2003-04-17 | Catch up with changed struct reg (same as gregs in mcontext now). | fvdl |
| 2003-04-16 | pthread_mutex_trylock(): It's not an error to call trylock() on a | nathanw |
| 2003-04-16 | When a thread sleeps on a mutex or cv, have it put itself on the | nathanw |
| 2003-04-16 | Fix a fencepost error in writing to the debug buffer. | nathanw |
| 2003-04-07 | When threads are started, register an atfork callback to clear | nathanw |
| 2003-04-07 | Consistently use pthread__assert() rather than err() to assert that | nathanw |
| 2003-04-05 | NetBSD/acorn26 has used APCS-32 for years, so unifdef -U__APCS_26__. | bjh21 |
| 2003-04-04 | Don't call pthread__locked_switch() to switch to ourself. Bad stack | nathanw |
| 2003-03-26 | Add PIC support. | scw |
| 2003-03-20 | Use pthread__assert() instead of plain assert(), as the latter has | nathanw |
| 2003-03-14 | Add a wrapper for the execve() system call that arranges for the current | nathanw |
| 2003-03-13 | Include <sys/types> before <sys/lock.h>, shuffle <ucontext.h>. | thorpej |
| 2003-03-11 | Remove debugging code accidentally committed. | nathanw |
| 2003-03-11 | * Use a <= comparison rather than a < comparison when searching for | nathanw |
| 2003-03-10 | Re-enable nanosleep(); kernel bug is squished (kern_time.c:1.67). | nathanw |
| 2003-03-08 | add __RCSID() | lukem |
| 2003-03-01 | Don't use FP instructions when building for m68010. Fixes broken sun2 build. | scw |
| 2003-02-28 | Disable userlevel nanosleep() until I find the timer/alarm bug that it | nathanw |
| 2003-02-28 | If pthreads hasn't started yet when calling sigsuspend, use the systemcall | lha |
| 2003-02-26 | In pthread_create(), rearrange name-setting code so that name is set | nathanw |
| 2003-02-26 | Add support for naming a thread, using an API compatible with Tru64 Unix: | thorpej |
| 2003-02-22 | In pthread_exit(), clear pt_canceled in addition to setting | nathanw |
| 2003-02-15 | Implement nanosleep() at userlevel. Threaded applications seem to like | nathanw |
| 2003-02-15 | interposition sigtimedwait() with a thread-aware version, which uses | jdolecek |
| 2003-02-15 | Remove unused #include <assert.h> | nathanw |
| 2003-02-15 | Move debug toggle to pthread_debug.h. | nathanw |
| 2003-02-15 | Remove debug toggle and add debug counter for signals and broadcasts | nathanw |
| 2003-02-15 | Adapt to pthread__assert() and remove local debug toggle. | nathanw |
| 2003-02-15 | Define a pthread-specific assert function, pthread__assert(), that | nathanw |
| 2003-02-15 | Move module-specific debugging definitions here. | nathanw |
| 2003-02-15 | Remove unnecessary inclusion of <assert.h>. | nathanw |
| 2003-02-13 | Implement pthread_atfork() (in libc, because the required threadlib | nathanw |
| 2003-02-10 | Continue at the plain switch return point in pthread__switch, not the | fvdl |
| 2003-02-06 | pthread_kill() was implemented, remove from list | jdolecek |
| 2003-02-04 | minor whitespace changes | jdolecek |
| 2003-02-01 | Arrange to pause for a while if pthread_cond_wait() or | nathanw |
| 2003-01-31 | Add a missing bracket to make this compile. | tron |
| 2003-01-31 | Include <sys/types.h> | pk |
| 2003-01-31 | Use pthread__sched_sleepers() instead of iterating over sleep queues | nathanw |
| 2003-01-31 | Add a new internal function, pthread__sched_sleepers(), which iterates | nathanw |
| 2003-01-31 | Do a similar tuneup on pthread_cond_signal() and | nathanw |
| 2003-01-31 | Mutex tuneup. | nathanw |
| 2003-01-30 | libpthread support for x86_64. | fvdl |
| 2003-01-30 | More rototilling: | nathanw |
| 2003-01-30 | Simplify pthread__upcall() a bit by moving lock resolution before the big | nathanw |
| 2003-01-30 | Set a thread's state to RUNNABLE when yielding. | nathanw |
| 2003-01-29 | cosmetics | drochner |
| 2003-01-28 | __sigaction14(): sanity check 'sig' before use, same way as sigaction1() | jdolecek |