summaryrefslogtreecommitdiff
path: root/lib/libc/gen/swapcontext.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix known issues which blow up the process after dlopen("libthr.so")Konstantin Belousov2015-01-031-55/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (or loading a dso linked to libthr.so into process which was not linked against threading library). - Remove libthr interposers of the libc functions, including __error(). Instead, functions calls are indirected through the interposing table, similar to how pthread stubs in libc are already done. Libc by default points either to syscall trampolines or to existing libc implementations. On libthr load, libthr rewrites the pointers to the cancellable implementations already in libthr. The interposition table is separate from pthreads stubs indirection table to not pull pthreads stubs into static binaries. - Postpone the malloc(3) internal mutexes initialization until libthr is loaded. This avoids recursion between calloc(3) and static pthread_mutex_t initialization. - Reinstall signal handlers with wrapper on libthr load. The _rtld_is_dlopened(3) is used to avoid useless calls to sigaction(2) when libthr is statically referenced from the main binary. In the process, fix openat(2), swapcontext(2) and setcontext(2) interposing. The libc symbols were exported at different versions than libthr interposers. Export both libc and libthr versions from libc now, with default set to the higher version from libthr. Remove unused and disconnected swapcontext(3) userspace implementation from libc/gen. No objections from: deischen Tested by: pho, antoine (exp-run) (previous versions) Sponsored by: The FreeBSD Foundation MFC after: 1 week Notes: svn path=/head/; revision=276630
* Don't peek into MD structures from MI code. The getcontext(3) andJonathan Mini2002-09-201-9/+1
| | | | | | | setcontext(3) functions check the validify of the mcontext_t structs. Notes: svn path=/head/; revision=103666
* Bandaid to stop failing on non-i386 platforms.Peter Wemm2002-09-171-0/+5
| | | | | | | Add a big ugly #warning as a reminder. Notes: svn path=/head/; revision=103460
* Add signalcontext(), which lays down a signal frame onto a ucontext_t.Jonathan Mini2002-09-161-12/+15
| | | | | | | | Reviewed by: deischen, julian Approved by: -arch Notes: svn path=/head/; revision=103405
* Include <stddef.h> to fix build problem when namespace pollutionDaniel Eischen2002-01-111-7/+8
| | | | | | | | | | | | by <signal.h> (including <time.h> so that NULL is accidentally defined) is removed. Style nits. Submitted by: bde Notes: svn path=/head/; revision=89269
* Add getcontext, setcontext, makecontext, and swapcontext. TheseDaniel Eischen2002-01-101-0/+54
functions are defined in SUSv2 and the latest POSIX spec. Thanks to Bernd Walter <ticso@cicely8.cicely.de> for helping debug my alpha assembly. Approved by: -arch Notes: svn path=/head/; revision=89177