summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-05-20Administrative fixesrpj
2004-05-17''rpj
2004-05-17''rpj
2004-05-17''snap-2004-05-16rpj
2004-05-17''rpj
2004-05-17re-indentation, bug fixes, hooks for pre-emptive async cancelationrpj
2004-05-06Attempt to make email addresses less harvestablerpj
2004-05-06''rpj
2004-05-06''rpj
2004-04-06Close memory leak.rpj
2004-02-13Remove redundant equality logic.rpj
2003-12-11*** empty log message ***rpj
2003-12-10*** empty log message ***rpj
2003-12-10*** empty log message ***rpj
2003-12-10Fix timeout calculations.rpj
2003-10-15Add Watcom compiler compatibility.rpj
2003-09-18Cleanup and fixes to thread priority management. Other minor changes.snap-2003-09-18rpj
2003-09-02Tested and passed.snap-2003-09-04rpj
2003-09-02Allow cancelation of waiting implicit threads.rpj
2003-09-02Added cancelation of/from non-POSIX threads; minor fixes; minor changes.snap-2003-09-03rpj
2003-09-01Reuse the thread struct on failure.rpj
2003-08-19Fix accidental corruption of some test cases.snap-2003-08-19rpj
2003-08-19Updated Copyright notice (date and contact address).rpj
2003-08-19Fix missing constants.rpj
2003-08-14Updated for snapshot release.snap-2003-08-15rpj
2003-08-14Minor edit.rpj
2003-08-14Reuse of thread IDs, improved thread ID validation, new tests, bug fixes.rpj
2003-08-13Bug fixes plus adaptation to current MinGW/MsysDTK environment. Changes to ↵rpj
tests/benchmarks.
2003-08-12Invalid thread param now returns ESRCH instead of EINVAL.rpj
2003-06-27Free the spinlock struct in ALL appropriate cases.rpj
2003-06-24pthread_spin_destroy was not freeing the spinlock struct.rpj
2003-06-21pthread_mutex_destroy.c (pthread_mutex_destroy): When calledrpj
with a recursive mutex that was locked by the current thread, the function was failing with a success return code.
2003-05-15Fixed memory leaks caused by destructors calling pthreads routines at thread ↵rpj
exit.
2003-05-14Fix compiler flag in Visual Studio project file.rpj
2003-05-10Release of snapshot 2003-05-10.snap-2003-05-10rpj
2003-03-04Indenting.rpj
2003-03-04 * pthread_mutex_timedlock.c (pthread_mutex_timedlock): Fix failure torpj
set ownership of mutex on second grab after abstime timeout.
2002-12-18Adjust attribution.rpj
2002-12-17 * pthread_mutex_lock.c (ptw32_semwait): New static routine to providerpj
a non-cancelable sem_wait() function. This is consistent with the way that pthread_mutex_timedlock.c does it. (pthread_mutex_lock): Use ptw32_semwait() instead of sem_wait().
2002-12-112002-12-11 Thomas Pfaff <tpfaff@gmx.net>rpj
* pthread_mutex_trylock.c: Should return EBUSY rather than EDEADLK. * pthread_mutex_destroy.c: Remove redundant ownership test (the trylock call does this for us); do not destroy a recursively locked mutex.
2002-11-04Update admin files.snap-2002-11-04rpj
2002-09-202002-09-20 Michael Johnson <michaelj@maine.rr.com>rpj
* pthread_cond_destroy.c (pthread_cond_destroy): When two different threads exist, and one is attempting to destroy a condition variable while the other is attempting to initialize a condition variable that was created with PTHREAD_COND_INITIALIZER, a deadlock can occur. Shrink the ptw32_cond_list_lock critical section to fix it.
2002-07-30*** empty log message ***rpj
2002-07-30* pthread_cond_wait.c (ptw32_cond_wait_cleanup):rpj
Remove code designed to avoid/prevent spurious wakeup problems. It is believed that the sem_timedwait() call is consuming a CV signal that it shouldn't and this is breaking the avoidance logic.
2002-07-30* sem_timedwait.c (sem_timedwait): Tighten checks forrpj
unreasonable abstime values - that would result in unexpected timeout values. * w32_CancelableWait.c (ptw32_cancelable_wait): Tighten up return value checking and add comments.
2002-06-04*** empty log message ***rpj
2002-06-04Another attempt to get sem_getvalue working.rpj
2002-06-03An attempt to get sem_getvalue working properly.rpj
2002-03-03Minor post-snapshot updates.rpj
2002-03-02Made Item 1 description more accurate.rpj