| Commit message (Expand) | Author | Age | Files | Lines |
* | Try and get libc_r to compile again on the alpha after deischen's commit | peter | 2000-10-17 | 1 | -3/+3 |
* | #include <sys/types.h> | brian | 2000-10-15 | 1 | -0/+2 |
* | Enable _PTHREADS_INVARIANTS until the recent libc_r changes are | deischen | 2000-10-13 | 1 | -1/+1 |
* | Implement zero system call thread switching. Performance of | deischen | 2000-10-13 | 23 | -1098/+1686 |
* | Add thread-safe wrapper for fpathconf(2) syscall. | sobomax | 2000-09-19 | 2 | -0/+2 |
* | The second call to _thread_kern_sig_defer() in sem_post() should be a call | jasone | 2000-08-23 | 1 | -1/+1 |
* | Fix an off-by-one error in the recursive mutex handling that made it | alfred | 2000-08-13 | 1 | -3/+3 |
* | Add wrapper for kevent() syscall | jlemon | 2000-08-07 | 4 | -3/+5 |
* | Make sem_post() safe to call from within a signal handler, as required by | jasone | 2000-08-01 | 1 | -0/+7 |
* | Call _thread_init() from pthread_once() if it has not already been called. | dfr | 2000-07-21 | 1 | -0/+2 |
* | Change my email address in the copyright notices for the sake of consistency | jasone | 2000-07-18 | 10 | -10/+10 |
* | Deal correctly with statically initialized condition variables in | jasone | 2000-07-17 | 1 | -18/+17 |
* | Remove DEBUG_FLAGS=-g3, which never should have been committed. | jasone | 2000-07-05 | 1 | -2/+0 |
* | If multiple threads are blocked in sigwait() for the same signal that does | jasone | 2000-06-27 | 3 | -4/+37 |
* | pthread_mutex_lock(), pthread_cond_trywait(), and pthread_cond_wait() are | jasone | 2000-06-14 | 6 | -36/+125 |
* | Back out the previous change to the queue(3) interface. | jake | 2000-05-26 | 1 | -20/+20 |
* | Change the way that the queue(3) structures are declared; don't assume that | jake | 2000-05-23 | 1 | -20/+20 |
* | Fix a memory leak. pthread_set_name_np() allocates space for a name, but | jasone | 2000-05-16 | 1 | -2/+6 |
* | Fixed missing consts for function parameters, so that the code matches | bde | 2000-05-11 | 3 | -3/+6 |
* | Add missing man pages. Fix various compliance bugs, mostly having to do with | jasone | 2000-05-02 | 5 | -21/+34 |
* | Add a wrapper for the sendfile() system call. | jasone | 2000-04-27 | 2 | -1/+4 |
* | Add test to detect propagation of cancellation points within libc_r. | jasone | 2000-04-26 | 2 | -1/+75 |
* | Automated regression test harness for libc_r. Existing tests are integrated, | jasone | 2000-04-24 | 15 | -3/+3356 |
* | Explicitly include sys/cdefs.h to get the definition of __strong_reference(), | jasone | 2000-03-18 | 1 | -0/+1 |
* | Fix pthread_suspend_np/pthread_resume_np. For the record, suspending a | deischen | 2000-03-15 | 9 | -31/+125 |
* | For errors, return -1 and set errno to indicate the error type, rather than | jasone | 2000-02-16 | 1 | -16/+33 |
* | Use __strong_reference() instead of __weak_reference() to assure that the | jasone | 2000-01-29 | 11 | -11/+11 |
* | Use _fcntl() (not fcntl()) inside of fcntl(). | jasone | 2000-01-28 | 1 | -3/+3 |
* | Simplify sytem call renaming. Instead of _foo() <-- _libc_foo <-- foo(), | jasone | 2000-01-27 | 33 | -81/+571 |
* | Fix millisecond to nanosecond conversion. | jasone | 2000-01-22 | 1 | -1/+1 |
* | Minor *jmp() cleanups. | jasone | 2000-01-20 | 1 | -2/+3 |
* | Add sem_*() functions. Named semaphores and process-shared semaphores | jasone | 2000-01-20 | 3 | -0/+237 |
* | Do signal deferral for pthread_kill() as it was done in the old days. | jasone | 2000-01-20 | 3 | -30/+6 |
* | Implement continuations to correctly handle [sig|_]longjmp() inside of a | jasone | 2000-01-19 | 12 | -61/+374 |
* | Properly initialize the last active time of the initial thread. This fixes | deischen | 2000-01-18 | 1 | -0/+6 |
* | Track libc's three-tier symbol naming. libc_r must currently implement | jasone | 2000-01-12 | 26 | -32/+75 |
* | Make sched_param parameter a const to comply with POSIX and SUSv2 specs. | deischen | 2000-01-10 | 1 | -1/+1 |
* | Don't explicitly mmap() red zones at the bottom of thread stacks (except | jasone | 1999-12-29 | 3 | -16/+26 |
* | -Wall and minor style(9) cleanups. | deischen | 1999-12-28 | 6 | -14/+13 |
* | Change stack allocation algorithm to make better use of memory | deischen | 1999-12-28 | 2 | -22/+20 |
* | Don't wakeup threads when there is a process signal and no installed | deischen | 1999-12-28 | 1 | -23/+37 |
* | Fix some minor POSIX/SUSv2 compliance nits. | jasone | 1999-12-18 | 2 | -7/+5 |
* | Fix problems with cancellation while in critical regions. | deischen | 1999-12-17 | 6 | -8/+21 |
* | Fixes for signal handling: | deischen | 1999-12-17 | 5 | -147/+208 |
* | Avoid an infinite loop if the last element of the iov array passed to | jasone | 1999-12-16 | 1 | -1/+13 |
* | Change signal handling to conform to POSIX specified semantics. | deischen | 1999-12-04 | 4 | -27/+79 |
* | * Fix the stack allocation code so that it works for alpha. Change it | dfr | 1999-11-28 | 2 | -6/+26 |
* | add pthread_cancel, obtained from OpenBSD. | alfred | 1999-11-28 | 27 | -72/+508 |
* | Add sigsuspend.o and sigpending.o to HIDDEN_SYSCALLS as well. | marcel | 1999-10-14 | 1 | -2/+2 |
* | Add sigprocmask to HIDDEN_SYSCALLS. This renames the syscall to | marcel | 1999-09-30 | 1 | -1/+2 |