| Commit message (Expand) | Author | Age | Files | Lines |
* | 1. Now that it's a thread's state is changed from within the kernel, where | mtm | 2004-10-13 | 2 | -4/+10 |
* | Remove a reference to a non-existent syscall: _thr_exit(). The | mtm | 2004-10-08 | 1 | -4/+1 |
* | Close a race between a thread exiting and the freeing of it's stack. | mtm | 2004-10-06 | 1 | -3/+2 |
* | Remove vestiges of libthr's signal mangling past. This fixes that last | mtm | 2004-09-22 | 1 | -14/+1 |
* | The SUSv3 function say that the affected functions MAY FAIL, if the | mtm | 2004-09-22 | 1 | -27/+6 |
* | Implement cancellation points in libc interfaces, as specified by POSIX. | mtm | 2004-09-16 | 2 | -0/+314 |
* | Adjust code to support AMD64, on AMD64, thread needs to set fsbase by | davidxu | 2004-08-19 | 3 | -7/+31 |
* | Add AMD64 support code. | davidxu | 2004-08-19 | 2 | -0/+106 |
* | Add rtld-elf to the include path for the rtld to pthread TLS interface. | dfr | 2004-08-15 | 1 | -0/+1 |
* | Add TLS support for libthr on i386. | dfr | 2004-08-15 | 2 | -74/+29 |
* | o Assertions to catch that stuff that shouldn't happen is not happening. | mtm | 2004-07-30 | 3 | -20/+19 |
* | Define _libthr_debug for use by libthread_db. | marcel | 2004-07-18 | 1 | -0/+9 |
* | Record the offset of thr_id in the thread structure. Required for | marcel | 2004-07-04 | 1 | -0/+1 |
* | Change the thread ID (thr_id_t) used for 1:1 threading from being a | marcel | 2004-07-02 | 4 | -19/+9 |
* | When a thread is created suspended have libthr suspend it explicitly | mtm | 2004-06-30 | 1 | -10/+3 |
* | Implement pthread_atfork in libthr. This is mostly from deichen's | mtm | 2004-06-27 | 5 | -0/+133 |
* | In the case that the global thread list is being re-initialized after | mtm | 2004-06-27 | 1 | -4/+4 |
* | Make libthr async-signal-safe without costly signal masking. The guidlines I | mtm | 2004-05-20 | 15 | -622/+320 |
* | q§ | mtm | 2004-05-20 | 1 | -7/+5 |
* | Unconditionaly initialize any spin lock passed to pthread_spin_init(). While | mtm | 2004-04-24 | 1 | -4/+0 |
* | o Also check that the mutex type is not less than the minimum allowable value. | mtm | 2004-03-29 | 1 | -2/+3 |
* | Make the minimum implementation of pthread_kill conform to the | mtm | 2004-03-29 | 1 | -0/+13 |
* | o Don't explicitly check the thread for NULL. That is the caller's | mtm | 2004-03-29 | 1 | -6/+10 |
* | o If a thread is marked as detached AND on the dead threads list | mtm | 2004-03-29 | 1 | -3/+3 |
* | If a condition variable is statically initialized don't return | mtm | 2004-03-29 | 1 | -2/+6 |
* | The thread suspend function now returns ETIMEDOUT, not EAGAIN. | mtm | 2004-03-29 | 2 | -3/+2 |
* | o Remove more references to SIGTHR | mtm | 2004-03-29 | 2 | -58/+0 |
* | Remove the garbage collector thread. All resources are freed | mtm | 2004-03-28 | 7 | -244/+44 |
* | o Since we're not using signals for thread synchronization anymore, | mtm | 2004-03-27 | 2 | -34/+17 |
* | Stop using signals for synchronizing threads. The performance penalty | mtm | 2004-03-27 | 5 | -24/+9 |
* | o The mutex locking functions aren't normally cancellation points. But, | mtm | 2004-03-26 | 1 | -3/+12 |
* | o Initialize a local variable before referencing it. This was not | mtm | 2004-03-26 | 1 | -1/+4 |
* | Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror) | markm | 2004-03-05 | 1 | -1/+1 |
* | libthr powerpc support. | grehan | 2004-03-02 | 2 | -0/+63 |
* | Implement PThreads barriers and barrier attributes. | mtm | 2004-02-19 | 6 | -1/+236 |
* | Don't wake up the thread after the signal handler | mtm | 2004-02-19 | 1 | -1/+1 |
* | Remove thr_getschedparam.c since it's contents have been moved into | mtm | 2004-02-18 | 1 | -1/+0 |
* | There are consumers of rwlocks, inluding our own libc, that depend on | mtm | 2004-02-18 | 1 | -96/+24 |
* | o Catch up with the mutex priority protocol fixes. | mtm | 2004-02-18 | 2 | -121/+65 |
* | o Style | mtm | 2004-02-18 | 2 | -48/+39 |
* | o Refactor and, among other things, get rid of insane nesting levels. | mtm | 2004-02-18 | 2 | -811/+305 |
* | Move the initialization of thread priority to a common function. | mtm | 2004-02-18 | 2 | -6/+3 |
* | Move the weak references to the top of the file to conform | mtm | 2004-02-18 | 1 | -43/+22 |
* | style cleanup: Remove duplicate $FreeBSD$ tags. | cperciva | 2004-02-10 | 1 | -2/+0 |
* | Remove the band-aid (#include <time.h>). | deischen | 2004-02-03 | 1 | -1/+0 |
* | Add <time.h> -- bandaid to unbreak world in <semaphore.h>. | deischen | 2004-02-03 | 1 | -0/+1 |
* | Bump up the maximum number concurrent threads on x86. | mtm | 2004-02-01 | 1 | -1/+1 |
* | I update the rwlock code in libthr to be more standards compliant and | mtm | 2004-01-29 | 1 | -12/+119 |
* | When suspending a thread if the timeout was very short or | mtm | 2004-01-29 | 1 | -0/+11 |
* | o Implement the pthread_spin_* functions in libthr. | mtm | 2004-01-22 | 2 | -0/+91 |