aboutsummaryrefslogtreecommitdiff
path: root/lib/libc_r/uthread
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/4.2.0_cvscvs2svn2000-11-20127-127/+127
* MFC: fix MD macros to work for alphaJordan K. Hubbard2000-11-201-4/+4
* MFC: Fix a bug where a statically initialized condition variableDaniel Eischen2000-11-171-2/+2
* MFC: Fix a bug where the signal handler can trample on theDaniel Eischen2000-11-164-23/+38
* MFC: Correct the logic for checking the emptiness of the waiting queue.Daniel Eischen2000-11-121-1/+1
* MFC: bring in signal handling changes, bug fixes, performanceDaniel Eischen2000-11-0932-1490/+2089
* MFC 1.24 -> 1.25: Call _thread_init() at the beginning ofJohn Polstra2000-11-011-0/+3
* MFC 1.3 -> 1.4: Call _thread_init() from pthread_once() if it hasJohn Polstra2000-09-221-0/+2
* MFC: Add wrapper for fpathconf(2) syscall.Maxim Sobolev2000-09-202-0/+2
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-09-191-0/+46
* MFC: Make sem_post() safe for use within signal handlers.Jason Evans2000-08-231-0/+7
* MFC:John Baldwin2000-08-235-21/+34
* MFC: Add wrapper for kevent() syscallJohn Baldwin2000-08-231-0/+1
* MFC: Change _thread_kern_set_timeout() to use a const argument.John Baldwin2000-08-232-2/+2
* MFC: Change the prototypes in the code as well as in the headers.John Baldwin2000-08-173-3/+6
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-08-131-0/+75
* MFC: 1.23 fix off-by-one error with recursive mutexesAlfred Perlstein2000-08-131-3/+3
* MFC: Change my email address in the copyright notices for the sake ofJason Evans2000-07-1810-10/+10
* MFC: Add a sendfile() wrapper, so that calls to sendfile() do not block theJason Evans2000-07-181-0/+1
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-07-181-0/+154
* MFC: Deal correctly with statically initialized condition variables inJason Evans2000-07-171-18/+17
* MFC: Always do the right thing if there are multiple sigwait()ers for theJason Evans2000-07-123-4/+37
* MFC: Don't allow pthread_suspend_np()/pthread_resume_np() to causeJason Evans2000-06-277-36/+142
* MFC: Fix memory leaks for pthread_set_name_np().Jason Evans2000-05-232-2/+10
* MFC: Fix pthread_suspend_np()/pthread_resume_np().Jason Evans2000-03-229-30/+125
* MFC part of 1.37; fix typo in statement: "var | flag;" -> "var |= flag;"Peter Wemm2000-03-201-1/+1
* For errors, return -1 and set errno to indicate the error type, rather thanJason Evans2000-02-161-16/+33
* Use __strong_reference() instead of __weak_reference() to assure that theJason Evans2000-01-2938-38/+38
* Use _fcntl() (not fcntl()) inside of fcntl().Jason Evans2000-01-281-3/+3
* Simplify sytem call renaming. Instead of _foo() <-- _libc_foo <-- foo(),Jason Evans2000-01-2759-134/+624
* Fix millisecond to nanosecond conversion.Jason Evans2000-01-221-1/+1
* Minor *jmp() cleanups.Jason Evans2000-01-202-13/+8
* Add sem_*() functions. Named semaphores and process-shared semaphoresJason Evans2000-01-203-0/+237
* Do signal deferral for pthread_kill() as it was done in the old days.Jason Evans2000-01-203-30/+6
* Implement continuations to correctly handle [sig|_]longjmp() inside of aJason Evans2000-01-1915-83/+584
* Properly initialize the last active time of the initial thread. This fixesDaniel Eischen2000-01-181-0/+6
* Track libc's three-tier symbol naming. libc_r must currently implementJason Evans2000-01-1254-60/+162
* Make sched_param parameter a const to comply with POSIX and SUSv2 specs.Daniel Eischen2000-01-101-1/+1
* Change REGENTS -> AUTHOR in the copyright.Daniel Eischen2000-01-061-1/+2
* Don't explicitly mmap() red zones at the bottom of thread stacks (exceptJason Evans1999-12-293-16/+26
* -Wall and minor style(9) cleanups.Daniel Eischen1999-12-288-16/+15
* Change stack allocation algorithm to make better use of memoryDaniel Eischen1999-12-282-22/+20
* Don't wakeup threads when there is a process signal and no installedDaniel Eischen1999-12-281-23/+37
* Fix some minor POSIX/SUSv2 compliance nits.Jason Evans1999-12-181-7/+4
* Fix problems with cancellation while in critical regions.Daniel Eischen1999-12-178-24/+53
* Fixes for signal handling:Daniel Eischen1999-12-175-147/+208
* Avoid an infinite loop if the last element of the iov array passed toJason Evans1999-12-161-1/+13
* Change signal handling to conform to POSIX specified semantics.Daniel Eischen1999-12-044-27/+79
* * Fix the stack allocation code so that it works for alpha. Change itDoug Rabson1999-11-282-6/+26
* add pthread_cancel, obtained from OpenBSD.Alfred Perlstein1999-11-2829-103/+829