summaryrefslogtreecommitdiffstats
path: root/lib/libpthread/thread/thr_acl_aclcheck_fd.c
Commit message (Collapse)AuthorAgeFilesLines
* Revamp libpthread so that it has a chance of working in an SMPdeischen2003-04-181-47/+0
| | | | | | | | | | | | | | | | | | | 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.mini2002-09-161-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
* Instead of using a join queue for each thread, use a single pointer tojasone2001-05-201-1/+1
| | | | | | | | | | | keep track of a joiner. POSIX only supports a single joiner, so this simplification is acceptable. At the same time, make sure to mark a joined thread as detached so that its resources can be freed. Reviewed by: deischen PR: 24345
* To be consistent, use the __weak_reference macro from <sys/cdefs.h>deischen2001-04-101-1/+1
| | | | | | instead of #pragma weak to create weak definitions. Suggested by: bde
* Add thread safety wrappers for the posix1e syscalls that deal with filetmm2001-04-041-0/+47
descriptors. Approved by: rwatson Obtained from: TrustedBSD Project
OpenPOWER on IntegriCloud