aboutsummaryrefslogtreecommitdiff
path: root/lib/libthr
Commit message (Expand)AuthorAgeFilesLines
* 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
* The thr_new sysscall was already in libc, don't generate it.David Xu2006-01-111-1/+0
* 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
* Remove functions i386_get_gsbase and i386_set_gsbase, they were alreadyDavid Xu2006-01-071-14/+0
* 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-042-198/+343
* 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
* 1. Retire macro SCLASS, instead simply use language keyword andDavid Xu2005-12-212-109/+124
* Follow the mistake in libpthread, the first version name in libpthreadDavid Xu2005-12-211-1/+1
* Clear return code to zero if joiner successfully waited joinee.David Xu2005-12-191-0/+1
* Update copyright.David Xu2005-12-176-113/+84
* Remove unused _get_curthread() call.David Xu2005-12-121-2/+0
* Fix name compatible problem with POSIX standard. the sigval_ptr andDavid Xu2005-11-041-5/+5
* Remove a redundant _get_curthread() call.David Xu2005-11-021-1/+0
* In raise(), use a shortcut to directly send signal to current thread.David Xu2005-11-021-7/+2
* Fix some comments, eliminate a memory leak.David Xu2005-11-011-6/+13
* Use TIMERS_UNLOCK.David Xu2005-11-011-1/+1
* Add code to handle timer_delete(). The timer wrapper code is completelyDavid Xu2005-11-014-68/+268
* Add thread exit handler in timer_loop to handle broken buggy code whichDavid Xu2005-10-301-1/+3
* Add timer_create wrapper.David Xu2005-10-302-0/+3
* Remove unused variable.David Xu2005-10-292-9/+0
* Kill unused variable declaration.David Xu2005-10-291-2/+0
* Link libthr to libpthread on Alpha and Sparc.David Xu2005-10-271-0/+10
* Add experiment code to implement POSIX timer's SIGEV_THREAD notification.David Xu2005-10-261-0/+168
* Follow the change in kernel, joiner thread just waits at thread idDavid Xu2005-10-262-6/+10
* Put pthread_condattr_init sorted order.David Xu2005-10-251-1/+1
* Export following functions:David Xu2005-10-241-0/+6
* Add functions pthread_mutexattr_setpshared and pthread_mutexattr_getpshared.David Xu2005-10-241-0/+28
* The pthread_attr_set_createsuspend_np was broken, fix it byDavid Xu2005-10-101-1/+1
* Sort function names.David Xu2005-10-041-2/+2
* Add function pthread_timedjoin_np, the function is similar with pthread_joinDavid Xu2005-10-042-9/+51
* Include needed headers that were obtained through <pthread.h>. Sort headersStefan Farfeleder2005-09-013-1/+4
* - Prefix MUTEX_TYPE_MAX with PTHREAD_ to avoid namespace pollution.Stefan Farfeleder2005-08-192-3/+3
* Add usleep to the map files.Daniel Eischen2005-08-031-0/+2
* Add a cancellation point for usleep().Daniel Eischen2005-08-031-0/+19
* Cast to uintptr_t to avoid compiler warning, it was broken byDavid Xu2005-07-281-6/+12
* Bump the shared library version number of all libraries that have notKen Smith2005-07-221-1/+1
* Fix off-by-one nanosecond bug in macro TIMESPEC_ADD.David Xu2005-06-221-1/+1