| Commit message (Expand) | Author | Age | Files | Lines |
* | For un-prototyped static inline functions declared in pthread_md.h on | rwatson | 2007-12-01 | 2 | -3/+3 |
* | WARNS=3'ify. | deischen | 2007-11-30 | 10 | -22/+22 |
* | Stylize: | marcel | 2006-09-01 | 2 | -35/+51 |
* | The ucontext is 16-byte aligned, which means that struct tcb is | marcel | 2006-09-01 | 1 | -0/+1 |
* | Stylize. Introduce ppc_{get|set}_tp() and ppc_{get|set}_tcb() to | marcel | 2006-09-01 | 2 | -29/+59 |
* | Implement TLS. | marcel | 2006-09-01 | 4 | -50/+61 |
* | In order to let new binutils can compile it, replace movl with | davidxu | 2006-05-07 | 1 | -9/+9 |
* | Fix a race condition introduced when redzones were added. Use an | deischen | 2006-02-24 | 1 | -5/+4 |
* | Remove an unused variable. | deischen | 2005-07-29 | 1 | -1/+0 |
* | Clean out the leftovers from the i386_set_gsbase() TLS conversion. | peter | 2005-06-29 | 2 | -51/+8 |
* | Remove the special _amd64_set_gsbase() code for #ifdef COMPAT_32BIT, now | peter | 2005-04-26 | 2 | -10/+0 |
* | Use the i386_set_gsbase() syscall if it is implemented in the kernel. | peter | 2005-04-14 | 2 | -16/+41 |
* | Use the new atomic_cmpset_32(). | cognet | 2005-04-07 | 1 | -15/+0 |
* | Bring in a more healthy version of the libpthread for arm, which uses | cognet | 2005-02-26 | 4 | -4/+12 |
* | i386_set_ldt() is not available when running 32 bit binaries on amd64 | peter | 2004-11-06 | 2 | -0/+13 |
* | Cosmetic tweaks to reduce diffs to the i386 counterpart. | peter | 2004-11-06 | 1 | -2/+3 |
* | Partial support of KSE for arm. | cognet | 2004-11-05 | 4 | -59/+66 |
* | _tcb_ctor takes two args. | cognet | 2004-09-24 | 2 | -2/+2 |
* | Add missing brackets. It was committed from wrong tree. | davidxu | 2004-08-26 | 1 | -1/+1 |
* | gcc -O2 cleanup. tested for a long time. | davidxu | 2004-08-25 | 2 | -4/+4 |
* | Fix compile, s/tp_dtv/tp_tdv/g. | davidxu | 2004-08-16 | 3 | -3/+3 |
* | Bring PPC up to date with latest TLS changes. | grehan | 2004-08-16 | 2 | -3/+3 |
* | 1. Add macro DTV_OFFSET to calculate dtv offset in tcb. | davidxu | 2004-08-16 | 6 | -0/+8 |
* | Add TLS support for i386 and amd64. | dfr | 2004-08-15 | 8 | -31/+40 |
* | Save context in kernel fashion, so it can be restored by | davidxu | 2004-07-31 | 1 | -2/+5 |
* | Remove unused field. | davidxu | 2004-07-31 | 1 | -1/+0 |
* | Macro optimize, this increases context switch speed about 2% on my | davidxu | 2004-07-31 | 1 | -2/+2 |
* | PPC MD bits for KSE. Runs test cases OK. Crippled to 1:1 mode for | grehan | 2004-07-19 | 8 | -0/+820 |
* | Copy lwp id to thread mailbox. | davidxu | 2004-07-14 | 1 | -0/+1 |
* | Call kse_switchin to switch context when being debugged. | davidxu | 2004-07-13 | 4 | -24/+69 |
* | kse_switchin ABI was changed in kernel. | davidxu | 2004-07-12 | 1 | -3/+2 |
* | Avoid clobbering the red zone when running on the new context's stack in | tjr | 2004-06-07 | 1 | -0/+5 |
* | Arm bits for libpthread. It has no chances to work and should be considered | cognet | 2004-05-14 | 5 | -0/+471 |
* | Simplify the contexts created by the kernel and remove the related | marcel | 2003-12-07 | 1 | -0/+6 |
* | Apply a second fix for stack alignment with libkse. This time, enter the | peter | 2003-12-05 | 1 | -2/+2 |
* | Eliminate two pushl by using call instruction directly, this really | davidxu | 2003-11-29 | 1 | -2/+1 |
* | Use amd64_set_fsbase() instead of calling sysarch() directly. | peter | 2003-10-23 | 1 | -6/+1 |
* | Update context code for my last ABI breakage of mcontext. I'm worried | peter | 2003-10-17 | 1 | -7/+8 |
* | Don't forget to initialize the fake tcb when the kcb is allocated. | deischen | 2003-10-12 | 1 | -0/+3 |
* | Reverse the order of the first two arguments to _sparc64_enter_uts(). | deischen | 2003-10-09 | 1 | -2/+2 |
* | Convert a couple of hardcoded values to constants. Make thr_getcontext() | deischen | 2003-10-09 | 2 | -3/+7 |
* | Add preliminary sparc64 support to libpthread. This does not | deischen | 2003-10-09 | 6 | -0/+509 |
* | Fix FPU state restoring bug by jumping to right position. | davidxu | 2003-09-22 | 1 | -2/+2 |
* | Make KSE_STACKSIZE machine dependent by moving it from thr_kern.c to | marcel | 2003-09-19 | 3 | -1/+6 |
* | _ia64_break_setcontext() now takes a mcontext_t. While here, define | marcel | 2003-09-19 | 1 | -10/+3 |
* | Stop using the setcontext() syscall to restore an async context. | marcel | 2003-09-19 | 1 | -5/+5 |
* | Remove a comment that questioned why the size of the FPU | deischen | 2003-09-16 | 1 | -10/+1 |
* | Don't assume sizeof(long) = sizeof(int) on x86; use int | deischen | 2003-09-03 | 2 | -9/+17 |
* | Don't forget to set kcb_self. | davidxu | 2003-08-12 | 1 | -0/+1 |
* | Grok async contexts. When a thread is interrupted and an upcall | marcel | 2003-08-07 | 2 | -9/+41 |