| Commit message (Expand) | Author | Age | Files | Lines |
* | In function do_rw_wrlock, when a writer got an error and before returning, | davidxu | 2009-09-25 | 1 | -2/+16 |
* | Make UMTX_OP_WAIT_UINT actually wait for an unsigned integer on 64-bits | davidxu | 2009-04-13 | 1 | -1/+1 |
* | 1) Check NULL pointer before calling umtx_pi_adjust_locked(), this avoids | davidxu | 2009-03-13 | 1 | -24/+26 |
* | Add two commands to _umtx_op system call to allow a simple mutex to be | davidxu | 2008-06-24 | 1 | -35/+142 |
* | Use a seperated hash table for mutex and rwlock, avoid wasting some time | davidxu | 2008-05-30 | 1 | -17/+21 |
* | Introduce command UMTX_OP_WAIT_UINT_PRIVATE and UMTX_OP_WAKE_PRIVATE | davidxu | 2008-04-29 | 1 | -12/+62 |
* | let umtxq_busy() only spin on mp machine. make function name | davidxu | 2008-04-03 | 1 | -10/+14 |
* | Fix compiling problem for amd64. | davidxu | 2008-04-02 | 1 | -2/+2 |
* | Er, don't restart a timeout version. | davidxu | 2008-04-02 | 1 | -2/+4 |
* | Introduce kernel based userland rwlock. Each umtx chain now has two lists, | davidxu | 2008-04-02 | 1 | -45/+487 |
* | Check NULL pointer. | davidxu | 2007-12-17 | 1 | -1/+10 |
* | Add missing changes for fixing LOR of umtx lock and thread lock, follow | davidxu | 2007-12-17 | 1 | -11/+24 |
* | Add function UMTX_OP_WAIT_UINT, the function causes thread to wait for | davidxu | 2007-11-21 | 1 | -2/+24 |
* | Backout experimental adaptive-spin umtx code. | davidxu | 2007-06-06 | 1 | -67/+0 |
* | Commit 8/14 of sched_lock decomposition. | jeff | 2007-06-04 | 1 | -33/+52 |
* | Further system call comment cleanup: | rwatson | 2007-03-05 | 1 | -1/+0 |
* | Add a lwpid field into per-cpu structure, the lwpid represents current | davidxu | 2006-12-20 | 1 | -0/+70 |
* | Threading cleanup.. part 2 of several. | julian | 2006-12-06 | 1 | -6/+0 |
* | if a thread blocked on userland condition variable is | davidxu | 2006-12-04 | 1 | -5/+10 |
* | Introduce userspace condition variable, since we have already POSIX | davidxu | 2006-12-03 | 1 | -4/+200 |
* | Sweep kernel replacing suser(9) calls with priv(9) calls, assigning | rwatson | 2006-11-06 | 1 | -2/+3 |
* | Make KSE a kernel option, turned on by default in all GENERIC | jb | 2006-10-26 | 1 | -0/+6 |
* | Optimize umtx_lock_pi() a bit by moving some heavy code out of the loop, | davidxu | 2006-10-26 | 1 | -32/+27 |
* | In order to eliminate a branch, convert opcode to unsigned integer. | davidxu | 2006-10-25 | 1 | -2/+2 |
* | Eliminate an unnecessary `if' statement. | davidxu | 2006-10-25 | 1 | -1/+2 |
* | o Add keyword volatile for user mutex owner field. | davidxu | 2006-10-17 | 1 | -29/+23 |
* | Implement 32bit umtx_lock and umtx_unlock system calls, these two system | davidxu | 2006-10-06 | 1 | -0/+14 |
* | Fix umtx command order error for freebsd 32bit. | davidxu | 2006-09-22 | 1 | -1/+1 |
* | Add umtx support for 32bit process on AMD64 machine. | davidxu | 2006-09-22 | 1 | -82/+440 |
* | Merge all code of do_lock_normal, do_lock_pi and do_lock_pp into | davidxu | 2006-09-05 | 1 | -120/+52 |
* | Check if it is root user in do_unlock_pp. | davidxu | 2006-09-03 | 1 | -2/+4 |
* | Make sure we get new m_owner value if we can not unlock it in | davidxu | 2006-09-02 | 1 | -8/+12 |
* | Reorder some statments. Fix typo and remove stale comments. | davidxu | 2006-08-30 | 1 | -20/+16 |
* | Update comments about interrupted mutex locking. | davidxu | 2006-08-28 | 1 | -12/+5 |
* | This is initial version of POSIX priority mutex support, a new userland | davidxu | 2006-08-28 | 1 | -187/+1710 |
* | Add user priority loaning code to support priority propagation for | davidxu | 2006-08-25 | 1 | -0/+5 |
* | Move flag TDF_UMTXQ into structure umtxq, this eliminates the requirement | davidxu | 2006-05-18 | 1 | -15/+12 |
* | Use wakeup_one to avoid thundering herd. | davidxu | 2006-05-09 | 1 | -6/+6 |
* | Change msleep() and tsleep() to not alter the calling thread's priority | jhb | 2006-04-17 | 1 | -6/+4 |
* | Axe unused code. | davidxu | 2006-02-04 | 1 | -96/+0 |
* | do umtx_wake at userland thread exit address, so that others userland | davidxu | 2005-10-26 | 1 | -3/+3 |
* | Allocate umtx_q from heap instead of stack, this avoids | davidxu | 2005-03-05 | 1 | -34/+46 |
* | Revert my previous errno hack, that is certainly an issue, | davidxu | 2005-01-18 | 1 | -2/+1 |
* | make umtx timeout relative so userland can select different clock type, | davidxu | 2005-01-14 | 1 | -46/+51 |
* | Comment out debugging printf which doesn't compile on amd64. | phk | 2005-01-12 | 1 | -0/+2 |
* | Let _umtx_op directly return error code rather than from errno because | davidxu | 2005-01-12 | 1 | -12/+23 |
* | Break out of loop earlier if it is not timeout. | davidxu | 2005-01-08 | 1 | -1/+1 |
* | /* -> /*- for copyright notices, minor format tweaks as necessary | imp | 2005-01-06 | 1 | -1/+1 |
* | Return ETIMEDOUT when thread is timeouted since POSIX thread | davidxu | 2005-01-06 | 1 | -5/+7 |
* | Make umtx_wait and umtx_wake more like linux futex does, it is | davidxu | 2004-12-30 | 1 | -41/+9 |