aboutsummaryrefslogtreecommitdiff
path: root/lib/libthr/thread
Commit message (Expand)AuthorAgeFilesLines
* Axe unused member field.David Xu2006-08-082-12/+2
* Get number of CPUs and ignore spin count on single processor machine.David Xu2006-08-083-6/+15
* 1. Don't override underscore version of aio_suspend(), system(),David Xu2006-07-253-78/+169
* Unexpand two TAILQ_FOREACH_SAFE cases.Xin LI2006-07-172-4/+2
* Caching scheduling policy and priority in userland, a critical but baddlyDavid Xu2006-07-135-20/+50
* Use thr_setscheduler, thr_getscheduler and thr_setschedparam to implementDavid Xu2006-07-134-26/+15
* Use kernel facilities to support real-time scheduling.David Xu2006-07-127-124/+103
* Remove unused member.David Xu2006-06-031-1/+0
* Remove unused member field m_queue.David Xu2006-06-022-6/+1
* Explicitly request pre-zeroed memory instead of memset'ing ourXin LI2006-05-311-5/+1
* s/long/int.David Xu2006-04-271-2/+2
* - Use same priority range returned by kernel's sched_get_priority_min()David Xu2006-04-276-54/+56
* Remove multiple _get_curthread() calls.David Xu2006-04-231-4/+1
* Do not check validity of timeout if a mutex can be acquired immediately.David Xu2006-04-083-80/+103
* WARNS level 4 cleanup.David Xu2006-04-0444-186/+244
* Fix prototype mismatch.Dag-Erling Smørgrav2006-03-281-1/+2
* Remove priority mutex code because it does not work correctly,David Xu2006-03-277-1199/+200
* Check cancellation state carefully to see we really need to callDavid Xu2006-03-261-2/+5
* Don't cancel thread if it is in critical region.David Xu2006-03-251-1/+1
* Only wake up writer if the lock is free.David Xu2006-03-251-2/+2
* Compile thr_rtld.cDavid Xu2006-03-251-0/+1
* Add locking support for rtld.David Xu2006-03-254-4/+229
* set an upper limit for thread structures which can be allocated.David Xu2006-03-241-1/+12
* Set default contention scope to system.David Xu2006-03-201-1/+1
* Remove mqueue and timer, now they are in librt.David Xu2006-03-081-517/+0
* Add some more pthread stubs so that librt can use them.Daniel Eischen2006-03-051-4/+35
* Reimplement mutex_init to get rid of compile warning.David Xu2006-02-281-87/+38
* Disable POSIX SIGEV_THREAD notification support, soon we will have a commonDavid Xu2006-02-221-1/+0
* Read cycle count before sending signal, this fixes a userland threadDavid Xu2006-02-201-1/+1
* Rework last change of pthread_once, create a function _thr_once_init toDavid Xu2006-02-153-6/+10
* After fork(), reinitialize internal locks for pthread_once().David Xu2006-02-153-11/+15
* Now, thread name is stored in kernel, userland no longer has to keep it.David Xu2006-02-053-7/+2
* use syscall thr_set_name to implement pthread_set_name_np.David Xu2006-02-051-9/+18
* Add missing symbol pthread_set_name_np.David Xu2006-01-231-0/+2
* Eliminate unused code.David Xu2006-01-161-7/+1
* Enable mutex inheritance code in mutex_fork, I forgot to turn on it.David Xu2006-01-141-1/+11
* Increase the number of spinlocks, since libc's malloc implementation isJason Evans2006-01-131-1/+1
* In preparation for a new malloc implementation:Jason Evans2006-01-121-10/+4
* Use macro STATIC_LIB_REQUIRE to declare a symbol should be linked intoDavid Xu2006-01-102-95/+74
* Rescue pthread_set_name_np for compatible reason, remove unused code.David Xu2006-01-092-151/+10
* Tweak macro THR_LOCK_RELEASE a bit for non-PTHREAD_INVARIANTS case.David Xu2006-01-091-7/+14
* Return real detached state.David Xu2006-01-091-0/+2
* Fix a bug recently introduced, the _thread_active_count should beDavid Xu2006-01-081-0/+1
* Allow background threads to be suspended.David Xu2006-01-081-1/+4
* Try to reduce total time needed for suspending all threads,David Xu2006-01-081-4/+17
* Refine thread suspension code, now thread suspension is a blockableDavid Xu2006-01-057-68/+177
* 1. Add SIGEV_THREAD notification for mq_notify.David Xu2006-01-041-198/+339
* Remove in-progress wait code to sync with libpthread's behavior.David Xu2006-01-031-30/+8
* Let _mutex_cv_lock call internal functiona mutex_lock_common.David Xu2005-12-211-1/+2
* Hide umtx API symbols as well.David Xu2005-12-212-6/+9