| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove surplus mmap() call for stack guard page in init_private, it is done | davidxu | 2003-11-29 | 1 | -25/+0 |
* | Add an implementation for pthread_atfork(). | deischen | 2003-11-04 | 1 | -0/+2 |
* | Treat initial thread as scope system thread when KSE mode is not activated | davidxu | 2003-08-18 | 1 | -4/+3 |
* | Initialize rtld lock just before turning on thread mode and | davidxu | 2003-08-10 | 1 | -2/+0 |
* | Rethink the MD interfaces for libpthread to account for | deischen | 2003-08-05 | 1 | -14/+7 |
* | o Eliminate upcall for PTHREAD_SYSTEM_SCOPE thread, now it | davidxu | 2003-07-17 | 1 | -5/+11 |
* | o Use a daemon thread to monitor signal events in kernel, if pending | davidxu | 2003-06-28 | 1 | -39/+4 |
* | Only init _thread_sigact once, needn't init it again after a fork(). | davidxu | 2003-06-04 | 1 | -31/+31 |
* | Attempt to eliminate PLT relocations from rwlock aquire/release | kan | 2003-05-30 | 1 | -0/+2 |
* | Don't really spin on a spinlock; silently convert it to the same | deischen | 2003-05-29 | 1 | -0/+1 |
* | Add a method of yielding the current thread with the scheduler | deischen | 2003-05-16 | 1 | -0/+2 |
* | Move the mailbox to the beginning of the thread and align the | deischen | 2003-04-30 | 1 | -0/+3 |
* | Create the thread signal lock as a KSE lock (as opposed to | deischen | 2003-04-29 | 1 | -1/+1 |
* | Add a couple asserts to pthread_cond_foo to ensure the (low-level) | deischen | 2003-04-22 | 1 | -0/+3 |
* | Sorry folks; I accidentally committed a patch from what I was working | deischen | 2003-04-18 | 1 | -3/+3 |
* | Revamp libpthread so that it has a chance of working in an SMP | deischen | 2003-04-18 | 1 | -201/+314 |
* | Deliver signals posted via an upcall to the appropriate thread. | mini | 2003-02-17 | 1 | -0/+31 |
* | Schedule an idle context to block until timeouts expire without blocking | mini | 2002-11-12 | 1 | -0/+12 |
* | Use KSE to schedule threads. | mini | 2002-10-30 | 1 | -11/+16 |
* | Make libpthread KSE aware. | mini | 2002-09-16 | 1 | -158/+16 |
* | Make the changes needed for libpthread to compile in its new home. | mini | 2002-09-16 | 1 | -1/+1 |
* | Revamp suspend and resume. While I'm here add pthread_suspend_all_np() | deischen | 2002-05-24 | 1 | -7/+21 |
* | Undo namespace pollution by prefixing the globals pthread_guard_default and | alfred | 2002-05-15 | 1 | -7/+7 |
* | Don't use PAGE_SIZE in userland, instead use getpagesize(), this is to | alfred | 2002-05-13 | 1 | -3/+14 |
* | Add the ability to recognize old references to keys, and return NULL | deischen | 2002-03-19 | 1 | -1/+1 |
* | This has been sitting in my local tree long enough. Remove the use | deischen | 2002-02-09 | 1 | -12/+0 |
* | Fix the retrieval of USRSTACK via sysctl so that it works for 64-bit | deischen | 2001-12-18 | 1 | -2/+2 |
* | Make libc_r check the kern.usrstack sysctl instead of using internal | peter | 2001-10-26 | 1 | -3/+8 |
* | Compensate for "Compensate for header dethreading" by backing it out. | bde | 2001-10-10 | 1 | -2/+0 |
* | Implement pthread_attr_[gs]etguardsize(). Non-default-size stacks used to | jasone | 2001-07-20 | 1 | -4/+1 |
* | Instead of using a join queue for each thread, use a single pointer to | jasone | 2001-05-20 | 1 | -2/+2 |
* | Compenate for header dethreading. | markm | 2001-05-01 | 1 | -0/+2 |
* | Limit threads clock resolution to no less than 1000usec (1000Hz). | deischen | 2001-02-26 | 1 | -1/+2 |
* | Add weak definitions for wrapped system calls. In general: | deischen | 2001-01-24 | 1 | -91/+119 |
* | Force strong references to several pthread_* functions which are weakly | obrien | 2001-01-06 | 1 | -0/+32 |
* | When entering the scheduler from the signal handler, tell | deischen | 2000-11-14 | 1 | -6/+9 |
* | Don't needlessly poll file descriptors when there are no | deischen | 2000-11-09 | 1 | -29/+25 |
* | Implement zero system call thread switching. Performance of | deischen | 2000-10-13 | 1 | -15/+47 |
* | If multiple threads are blocked in sigwait() for the same signal that does | jasone | 2000-06-27 | 1 | -0/+3 |
* | Implement continuations to correctly handle [sig|_]longjmp() inside of a | jasone | 2000-01-19 | 1 | -0/+12 |
* | Properly initialize the last active time of the initial thread. This fixes | deischen | 2000-01-18 | 1 | -0/+6 |
* | Don't explicitly mmap() red zones at the bottom of thread stacks (except | jasone | 1999-12-29 | 1 | -1/+7 |
* | Change stack allocation algorithm to make better use of memory | deischen | 1999-12-28 | 1 | -7/+5 |
* | add pthread_cancel, obtained from OpenBSD. | alfred | 1999-11-28 | 1 | -0/+5 |
* | $Id$ -> $FreeBSD$ | peter | 1999-08-28 | 1 | -1/+1 |
* | Fix thread initialization to allow for the case where stdio file | deischen | 1999-08-05 | 1 | -8/+12 |
* | Use USRSTACK (defined in <machine/vmparam.h>) to get top of the initial stack. | dt | 1999-07-12 | 1 | -3/+4 |
* | Modify previous changes to conform better to libc_r's coding style. | jasone | 1999-07-11 | 1 | -4/+6 |
* | Always use growable thread stacks on the i386. The VM_STACK kernel option | jasone | 1999-07-06 | 1 | -4/+2 |
* | Use growable stacks for thread stacks that are the default stack size. | jasone | 1999-07-05 | 1 | -15/+28 |