aboutsummaryrefslogtreecommitdiff
path: root/lib/libkse/thread/thr_sigaltstack.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove the libkse directory. It was unhooked from the build and kernelBrooks Davis2014-04-161-111/+0
| | | | | | | | | | support removed in 2008 (prior to 8.0). Approved by: deischen, imp MFC after: 3 days Notes: svn path=/head/; revision=264543
* Remove hacks to allow libkse to export its symbols in the LIBTHREAD_1_0Daniel Eischen2007-12-161-3/+0
| | | | | | | | version namespace which was needed before the library version was bumped. Notes: svn path=/head/; revision=174689
* WARNS=3'ify.Daniel Eischen2007-11-301-0/+4
| | | | Notes: svn path=/head/; revision=174112
* 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
* Return error code in errno, not in return value.David Xu2004-01-021-3/+6
| | | | Notes: svn path=/head/; revision=124056
* Implement sigaltstack() as per-threaded. Current only scope process threadDavid Xu2003-12-291-0/+104
is supported, for scope system process, kernel signal bits need to be changed. Reviewed by: deischen Tested on : i386 amd64 ia64 Notes: svn path=/head/; revision=123974