| Commit message (Expand) | Author | Age | Files | Lines |
* | In order to maximize the re-usability of kernel code in user space this | kmacy | 2011-09-16 | 1 | -3/+3 |
* | Expose the umtx_key structure and API to the rest of the kernel. | jhb | 2011-02-23 | 1 | -50/+2 |
* | - Follow r216313, the sched_unlend_user_prio is no longer needed, always | davidxu | 2010-12-29 | 1 | -43/+18 |
* | Enlarge hash table for new condition variable. | davidxu | 2010-12-23 | 1 | -2/+2 |
* | MFp4: | davidxu | 2010-12-22 | 1 | -15/+105 |
* | One of the compat32 functions was copying in a raw timespec, instead of | mdf | 2010-12-15 | 1 | -2/+1 |
* | MFp4: | davidxu | 2010-12-09 | 1 | -7/+9 |
* | Use atomic instruction to set _has_writer, otherwise there is a race | davidxu | 2010-11-22 | 1 | -1/+2 |
* | Only unlock process if a thread is found. | davidxu | 2010-11-15 | 1 | -4/+4 |
* | Create a global thread hash table to speed up thread lookup, use | davidxu | 2010-10-09 | 1 | -8/+3 |
* | If a thread is removed from umtxq while sleeping, reset error code | davidxu | 2010-08-25 | 1 | -23/+12 |
* | Use ISO C99 integer types in sys/kern where possible. | ed | 2010-06-21 | 1 | -2/+2 |
* | Provide groundwork for 32-bit binary compatibility on non-x86 platforms, | nwhitehorn | 2010-03-11 | 1 | -3/+3 |
* | In function umtxq_insert_queue, use parameter q (shared/exclusive queue) | davidxu | 2010-02-10 | 1 | -1/+1 |
* | Set waiters flag before checking semaphore's counter, | davidxu | 2010-02-08 | 1 | -5/+2 |
* | Fix comments in do_sem_wait(). | davidxu | 2010-02-03 | 1 | -2/+1 |
* | After busied the lock, re-read state word before checking waiters flag, | davidxu | 2010-02-03 | 1 | -0/+12 |
* | Make a chain be a list of queues, and make threads waiting | davidxu | 2010-01-10 | 1 | -33/+93 |
* | Use enum to define key types. | davidxu | 2010-01-09 | 1 | -8/+10 |
* | put semaphore waiter in long term list. | davidxu | 2010-01-09 | 1 | -1/+1 |
* | Add key type TYPE_SEM. | davidxu | 2010-01-09 | 1 | -8/+9 |
* | Add user-level semaphore synchronous type, this change allows multiple | davidxu | 2010-01-04 | 1 | -2/+160 |
* | 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 |