summaryrefslogtreecommitdiffstats
path: root/lib/libkse/thread/thr_execve.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove hacks to allow libkse to export its symbols in the LIBTHREAD_1_0deischen2007-12-161-3/+0
| | | | | version namespace which was needed before the library version was bumped.
* WARNS=3'ify.deischen2007-11-301-0/+2
|
* Add compatibility symbol maps. libpthread (.so.1 and .so.2)deischen2006-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
* Use PTHREAD_SCOPE_SYSTEM to decide what should be done.davidxu2004-10-071-3/+2
|
* Follow kernel change, restore signal mask correctly by using a commanddavidxu2004-10-071-21/+17
| | | | of kse_thr_interrupt.
* Add a wrapper for execve(). The exec'd process must be started withdeischen2004-09-261-0/+68
the signal mask and pending signals of the calling thread. These are stored in userland in libpthread. There is a small race condition in this patch which could cause problems if a signal arrives after setting the (kernel) signal mask and before exec'ing. The thread's set of pending signals also are not yet installed in the exec'd process. Both of these will be corrected with the addition of a special syscall. Reported & Tested by: Joost Bekkers <joost at jodocus dot org> Reviewed by: julian, davidxu
OpenPOWER on IntegriCloud