aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_exec.c
Commit message (Expand)AuthorAgeFilesLines
* Temporarily unlock vnode for new image being executed to avoid lock orderTor Egge2006-05-051-0/+6
* Remove the unused sva and eva arguments from pmap_remove_pages().Peter Wemm2006-04-031-2/+1
* Fix exec_map resource leaks.Stephan Uphoff2006-03-081-10/+19
* - Always call exec_free_args() in kern_execve() instead of doing it in allJohn Baldwin2006-02-061-22/+9
* - textvp may have been from a different mountpoint than ndp->ni_vp andJeff Roberson2006-02-021-1/+6
* Remove unneeded calls to pmap_remove_all(). The given page is not mapped.Alan Cox2005-12-111-1/+0
* Register itimers_event_hook as a kernel event handler, so I don'tDavid Xu2005-12-091-4/+0
* Reduce the scope of the page queues lock in exec_map_first_page(). The vmAlan Cox2005-12-061-4/+2
* Cleanup some signal interfaces. Now the tdsignal function acceptsDavid Xu2005-11-031-1/+1
* Calling setrlimit from 32bit apps could potentially increase certainPaul Saab2005-11-021-1/+1
* Make p_itimers as a pointer, so file sys/proc.h does not need to includeDavid Xu2005-10-231-0/+1
* Implement POSIX timers. Current only CLOCK_REALTIME and CLOCK_MONOTONICDavid Xu2005-10-231-0/+3
* 1. Change prototype of trapsignal and sendsig to use ksiginfo_t *, mostDavid Xu2005-10-141-1/+1
* Move execve's access time update functionality into a newDiomidis Spinellis2005-10-121-12/+2
* Add missing word to comment.Don Lewis2005-10-041-1/+1
* If sufficiently bad things happen during a call to kern_execve(), it isColin Percival2005-10-031-0/+8
* Copy new process argument list in do_execve() before grabbing PROC_LOCKDon Lewis2005-10-011-10/+10
* MFP4:Joseph Koshy2005-06-301-2/+7
* Move HWPMC_HOOKS into its own opt_hwpmc_hooks.h file. It doesn't meritPeter Wemm2005-06-241-0/+1
* MFP4:Joseph Koshy2005-06-091-2/+3
* This patch addresses a standards violation issue. The standards say aKen Smith2005-05-311-1/+13
* - Initialize vfslocked correctly early enough for MAC to compile.Jeff Roberson2005-05-031-5/+4
* - Use namei to acquire Giant for VFS if it is necessary. Drop the explicitJeff Roberson2005-05-031-9/+7
* - Return EACCES if we're trying to exec on a vp with no object.Jeff Roberson2005-05-011-0/+2
* - Pass the ISOPEN flag to namei so filesystems will know we're about toJeff Roberson2005-04-271-1/+1
* Bring a working snapshot of hwpmc(4), its associated libraries, userland util...Joseph Koshy2005-04-191-0/+22
* Welcome to the 21st century: increase MAXSHELLCMDLEN from 128 bytes toMaxim Sobolev2005-02-251-5/+9
* Grrr, this committer needs to have a sleep. Remove lines from the previousMaxim Sobolev2005-01-291-3/+0
* Fix small non-conformance introduced in the previous commit: execve() isMaxim Sobolev2005-01-291-4/+4
* o Split out kernel part of execve(2) syscall into two parts: one thatMaxim Sobolev2005-01-291-96/+112
* Don't use VOP_GETVOBJECT, use vp->v_object directly.Poul-Henning Kamp2005-01-251-2/+3
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Add new function fdunshare() which encapsulates the necessary light magicPoul-Henning Kamp2004-12-141-10/+1
* Don't include sys/user.h merely for its side-effect of recursivelyDavid Schultz2004-11-271-1/+1
* Introduce an alias for FILEDESC_{UN}LOCK() with the suffix _FAST.Poul-Henning Kamp2004-11-131-3/+3
* Use more intuitive pointer for fdinit() and fdcopy().Poul-Henning Kamp2004-11-081-1/+1
* Put on my peril sensitive sunglasses and add a flags field to the internalPeter Wemm2004-10-111-4/+4
* Add an execve command for kse_thr_interrupt to allow libpthread toDavid Xu2004-10-071-3/+2
* In original kern_execve() code, at the start of the function, it forcesDavid Xu2004-10-061-12/+46
* - Don't try to unlock Giant if single threading fails since we don't haveJohn Baldwin2004-09-231-1/+1
* Revert the last change..Julian Elischer2004-09-221-17/+11
* In a threaded process, don't kill off all the other threads until we have aJulian Elischer2004-09-211-11/+17
* Refactor a bunch of scheduler code to give basically the same behaviourJulian Elischer2004-09-051-6/+2
* Add locking to the kqueue subsystem. This also makes the kqueue subsystemJohn-Mark Gurney2004-08-151-1/+1
* Rename suser_cred()'s PRISON_ROOT flag to SUSER_ALLOWJAIL. This isColin Percival2004-07-261-1/+1
* White space fix..Julian Elischer2004-07-241-3/+3
* Push down the acquisition and release of the page queues lock intoAlan Cox2004-07-131-2/+0
* Move TDF_SA from td_flags to td_pflags (and rename it accordingly)Tim J. Robbins2004-06-021-3/+1
* Clear KSE thread flags after KSE thread mode is ended. The side effectDavid Xu2004-05-211-0/+3
* Utilize sf_buf_alloc() rather than pmap_qenter() (and sometimesAlan Cox2004-04-231-10/+12