summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_attr_get_np.c
Commit message (Collapse)AuthorAgeFilesLines
* Repo copy libpthreads to libkse.David E. O'Brien2007-10-091-57/+0
| | | | | | | | | This introduces the WITHOUT_LIBKSE nob, and changes WITHOUT_LIBPTHREADS to mean with neither threading libs. Approved by: re(kensmith) Notes: svn path=/head/; revision=172492
* Add compatibility symbol maps. libpthread (.so.1 and .so.2)Daniel Eischen2006-03-131-0/+3
| | | | | | | | | | | | | | used LIBTHREAD_1_0 as its version definition, but now needs to define its symbols in the same namespace used by libc. The compatibility hooks allows you to use libraries and binaries built and linked to libpthread before libc was built with symbol versioning. The shims can be removed if libpthread is given a version bump. Reviewed by: davidxu Notes: svn path=/head/; revision=156611
* Avoid accessing user provided parameters in critical region.David Xu2003-07-071-2/+3
| | | | | | | Reviewed by: deischen Notes: svn path=/head/; revision=117300
* Revamp libpthread so that it has a chance of working in an SMPDaniel Eischen2003-04-181-8/+4
| | | | | | | | | | | | | | | | | | | | | | 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 Notes: svn path=/head/; revision=113658
* Fix cut'n'paste errorAlexey Zelkin2003-03-051-1/+1
| | | | | | | Noticed by: julian Notes: svn path=/head/; revision=111928
* MFlibc_r: add and document pthread_attr_get_np() function.Alexey Zelkin2003-03-031-0/+57
Notes: svn path=/head/; revision=111846