Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Eek, staticize a couple of functions that shouldn't | deischen | 2003-05-19 | 1 | -1/+3 |
| | | | | | | | | | | | | be external (initialize()!). Remove cancellation points from _pthread_cond_wait and _pthread_cond_timedwait (single underscore versions are libc private functions). Point the weak reference(!) for these functions to the versions with cancellation points. Approved by: re@(blanket till 5/19) Pointed out by: kan (cancellation point bug) | ||||
* | Revamp libpthread so that it has a chance of working in an SMP | deischen | 2003-04-18 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | environment. This includes support for multiple KSEs and KSEGs. The ability to create more than 1 KSE via pthread_setconcurrency() is in the works as well as support for PTHREAD_SCOPE_SYSTEM threads. Those should come shortly. There are still some known issues which davidxu and I are working on, but it'll make it easier for us by committing what we have. This library now passes all of the ACE tests that libc_r passes with the exception of one. It also seems to work OK with KDE including konqueror, kwrite, etc. I haven't been able to get mozilla to run due to lack of java plugin, so I'd be interested to see how it works with that. Reviewed by: davidxu | ||||
* | Make the changes needed for libpthread to compile in its new home. | mini | 2002-09-16 | 1 | -1/+1 |
| | | | | | | | | The new libpthread will provide POSIX threading support using KSE. These files were previously repo-copied from src/lib/libc_r. Reviewed by: deischen Approved by: -arch | ||||
* | Add a wrapper for pselect() in order to make it a cancellation point. | deischen | 2002-06-28 | 1 | -0/+54 |
Prompted by: wollman |