summaryrefslogtreecommitdiff
path: root/lib/libpthread/thread/thr_pspinlock.c
Commit message (Collapse)AuthorAgeFilesLines
* Repo copy libpthreads to libkse.David E. O'Brien2007-10-091-174/+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/+11
| | | | | | | | | | | | | | 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
* Include needed headers that were obtained through <pthread.h>. Sort headersStefan Farfeleder2005-09-011-2/+5
| | | | | | | while here. Notes: svn path=/head/; revision=149691
* Libpthread uses the convention that all of its (non-weak) symbolsDaniel Eischen2003-11-041-5/+11
| | | | | | | | begin with underscores and provide weak definitions without underscores. Make the pthread spinlock conform to this convention. Notes: svn path=/head/; revision=122071
* Add code to support pthread spin lock.David Xu2003-09-091-0/+154
Reviewed by: deischen Notes: svn path=/head/; revision=119909